X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fdbg_gui.h;h=f6ff011dbfd3c7441479d015ad11c574bbeb7cdb;hp=5374d78c8e148d18c84664354e40f993d51e5a63;hb=e12a327cc0b4f1e59f4a66a80b170ec41ce97be6;hpb=d29eba477666f0753170d9ad549a4715ce071d04 diff --git a/src/dbg_gui.h b/src/dbg_gui.h index 5374d78..f6ff011 100644 --- a/src/dbg_gui.h +++ b/src/dbg_gui.h @@ -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_