cOMS/ui/UIElement.h
2024-08-04 00:09:16 +02:00

20 lines
260 B
C

#ifndef TOS_UI_ELEMENT_H
#define TOS_UI_ELEMENT_H
#include "UIElementType.h"
struct UIElement {
int id;
int type;
int window_id;
int panel_id;
bool is_visible;
bool is_active;
bool is_focused;
UIElementType type;
};
#endif