- added imgui
[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 bool debug_gui_key(int key, bool press, unsigned int modstate);
11 bool debug_gui_mbutton(int bn, bool press, int x, int y);
12 bool debug_gui_mmotion(int x, int y);
13
14 #endif  // DBG_GUI_H_