12 lines
233 B
C
12 lines
233 B
C
|
#ifndef SHROOMS_VB_NATIVE_UI_
|
||
|
#define SHROOMS_VB_NATIVE_UI_
|
||
|
|
||
|
typedef struct UIContext UIContext;
|
||
|
|
||
|
UIContext *uiInit();
|
||
|
void uiDestroy(UIContext *ui);
|
||
|
int uiLoadGame(UIContext *ui, const char *path);
|
||
|
int uiRun(UIContext *ui);
|
||
|
|
||
|
#endif
|