diff options
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 |
