cOMS/ui/UICursor.h
Dennis Eichhorn 39fbcf4300
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Waiting to run
Microsoft C++ Code Analysis / Analyze (push) Waiting to run
linux bug fixes
2025-03-22 01:10:19 +00:00

28 lines
612 B
C
Executable File

#ifndef COMS_UI_CURSOR_H
#define COMS_UI_CURSOR_H
#include "../stdlib/Types.h"
#include "attribute/UIAttributeDimension.h"
#include "UILayout.h"
#include "UIElement.h"
struct UICursorState {
};
struct UICursor {
UIAttributeDimension dimension;
byte opacity; // 1 byte alpha channel
};
int32 ui_cursor_element_update(UILayout* layout, UIElement* element)
{
//UICursor* input = (UICursor *) (layout->data + element->style_types[element->style_new]);
//UICursorState* state = (UICursorState *) (layout->data + element->state);
(void *) layout;
(void *) element;
return 0;
}
#endif