f6ff011dbfd3c7441479d015ad11c574bbeb7cdb
[laserbrain_demo] / src / dbg_gui.h
1 #ifndef DBG_GUI_H_
2 #define DBG_GUI_H_
3
4 #include "imgui/imgui.h"
5
6 extern bool debug_gui;
7 extern bool parent_expanded;
8
9 bool init_debug_gui();
10 void cleanup_debug_gui();
11
12 void debug_gui_reshape(int x, int y);
13 void debug_gui_key(int key, bool press, unsigned int modstate);
14 void debug_gui_mbutton(int bn, bool press, int x, int y);
15 void debug_gui_mmotion(int x, int y);
16 void debug_gui_wheel(int dir);
17
18 #endif  // DBG_GUI_H_