shrooms-vb-native/ui.h

14 lines
269 B
C
Raw Normal View History

#ifndef SHROOMS_VB_NATIVE_UI_
#define SHROOMS_VB_NATIVE_UI_
2024-11-01 01:21:05 +00:00
#include <stdbool.h>
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);
#endif