Remove code for connecting noodles

This commit is contained in:
2024-02-25 13:14:14 +00:00
parent 8501eb787e
commit 4610561eff
2 changed files with 12 additions and 35 deletions

View File

@@ -7,6 +7,8 @@
#include <stdbool.h>
#define MAX_UI_ELEMENTS 8192
#define RESERVED_UI_SLOT 0
#define UI_ELEM_START_INDEX 1
#define BUTTON_WIDTH 100
#define BUTTON_HEIGHT 40
@@ -28,7 +30,10 @@ enum ui_elem_type {
struct ui_elem {
u64 id;
rect rect;
union {
rect rec;
line ln;
};
ui_elem_type type;
};