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