blob: 8a620ffcd1b88495b3873998a5bf1e58e8f64d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|