diff options
| author | navewindre <boneyaard@gmail.com> | 2025-09-03 20:10:09 +0200 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2025-09-03 20:10:09 +0200 |
| commit | f8b92ce3aa08b1445c9f956d8166830946562d12 (patch) | |
| tree | 94e63a5aec9f8f52b577f56799e0c9201fd976a5 /src/gui.h | |
a
Diffstat (limited to 'src/gui.h')
| -rw-r--r-- | src/gui.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gui.h b/src/gui.h new file mode 100644 index 0000000..8a620ff --- /dev/null +++ b/src/gui.h @@ -0,0 +1,13 @@ +#include "gui/base.h" + + +#ifdef IS_EDITOR +inline void gui_create( struct GAME_DATA* game ) { + gui_init( game ); + + //gui_window( 300, 200 ); + //gui_title( "hello, world!" ); + + gui_end(); +} +#endif |
