mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-10 19:08:39 +00:00
28 lines
612 B
C
Executable File
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 |