blob: c5ace97932497c2c512860f898bba21c6f8c21f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|