rudimentary scenegraph treeview
[laserbrain_demo] / src / dbg_gui.h
index 5374d78..f6ff011 100644 (file)
@@ -3,12 +3,16 @@
 
 #include "imgui/imgui.h"
 
+extern bool debug_gui;
+extern bool parent_expanded;
+
 bool init_debug_gui();
 void cleanup_debug_gui();
 
 void debug_gui_reshape(int x, int y);
-bool debug_gui_key(int key, bool press, unsigned int modstate);
-bool debug_gui_mbutton(int bn, bool press, int x, int y);
-bool debug_gui_mmotion(int x, int y);
+void debug_gui_key(int key, bool press, unsigned int modstate);
+void debug_gui_mbutton(int bn, bool press, int x, int y);
+void debug_gui_mmotion(int x, int y);
+void debug_gui_wheel(int dir);
 
 #endif // DBG_GUI_H_