diff options
Diffstat (limited to 'src/uiLibrary.h')
| -rw-r--r-- | src/uiLibrary.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uiLibrary.h b/src/uiLibrary.h new file mode 100644 index 0000000..98719d7 --- /dev/null +++ b/src/uiLibrary.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include <ui.h> | ||
| 4 | |||
| 5 | #include "constants.h" | ||
| 6 | |||
| 7 | #include <font.h> | ||
| 8 | |||
| 9 | typedef struct uiLibrary { | ||
| 10 | FontAtlas* font; | ||
| 11 | uiMouseButtonState mouse_button_state[uiMouseButtonMax]; | ||
| 12 | uiWidgetEvent widget_events[MaxWidgetEvents]; | ||
| 13 | int num_widget_events; | ||
| 14 | } uiLibrary; | ||
| 15 | |||
| 16 | extern uiLibrary g_ui; | ||
