diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-07-11 21:43:06 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-07-11 21:43:06 +1000 |
commit | fedba7ff68924ff50022405fc9103a5acf7013fe (patch) | |
tree | cd4e8ebd21736d460ac0434ce08cc2012bf613e0 /src/ui/ui.h | |
parent | 9f23f65ec631bcd08f200b3ef517da8acf8d6b17 (diff) |
wip
Diffstat (limited to 'src/ui/ui.h')
-rw-r--r-- | src/ui/ui.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/ui.h b/src/ui/ui.h new file mode 100644 index 0000000..c5ace97 --- /dev/null +++ b/src/ui/ui.h @@ -0,0 +1,13 @@ +/** + * @brief + */ + +#pragma once +#include "defines.h" + +typedef struct UI_Storage UI_Storage; + +PUB bool UI_Init(UI_Storage* storage); +PUB void UI_Shutdown(UI_Storage* storage); + +// TODO: define immui api |