2024-10-30 01:53:17 +00:00
|
|
|
#ifndef SHROOMS_VB_NATIVE_UI_
|
|
|
|
#define SHROOMS_VB_NATIVE_UI_
|
|
|
|
|
2024-11-01 01:21:05 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2024-10-30 01:53:17 +00:00
|
|
|
typedef struct UIContext UIContext;
|
|
|
|
|
|
|
|
UIContext *uiInit();
|
|
|
|
void uiDestroy(UIContext *ui);
|
|
|
|
int uiLoadGame(UIContext *ui, const char *path);
|
2024-11-01 01:21:05 +00:00
|
|
|
int uiRun(UIContext *ui, bool running);
|
2024-10-30 01:53:17 +00:00
|
|
|
|
|
|
|
#endif
|