X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fdbg_gui.h;h=69b68aa171a7afe11b922fb720ec99610251bc46;hp=5374d78c8e148d18c84664354e40f993d51e5a63;hb=73b213a3546d98310fb9d70abfb4f38d1bd7c682;hpb=d29eba477666f0753170d9ad549a4715ce071d04 diff --git a/src/dbg_gui.h b/src/dbg_gui.h index 5374d78..69b68aa 100644 --- a/src/dbg_gui.h +++ b/src/dbg_gui.h @@ -3,12 +3,19 @@ #include "imgui/imgui.h" +class SceneNode; + +extern bool debug_gui; +extern bool parent_expanded; +extern SceneNode *dbg_sel_node; + 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_