|
#ifndef SHROOMS_VB_NATIVE_UI_
|
|
#define SHROOMS_VB_NATIVE_UI_
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct UIContext UIContext;
|
|
|
|
UIContext *uiInit();
|
|
void uiDestroy(UIContext *ui);
|
|
int uiLoadGame(UIContext *ui, const char *path);
|
|
int uiRun(UIContext *ui, bool running);
|
|
|
|
#endif
|