diff options
author | quou <quou@disroot.org> | 2025-02-07 00:34:44 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-02-07 00:34:44 +1100 |
commit | 73d7f8325aeb00cbaec89a1c15602b9bd85ff04e (patch) | |
tree | fbef9f89fad53a86882aab0b17a2ff2d7290ad41 /editor.hpp | |
parent | 5d09e4f0880b182a2f4c89508744c27823ed554e (diff) |
collision yes/no
Diffstat (limited to 'editor.hpp')
-rw-r--r-- | editor.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,13 +3,15 @@ #include "world.hpp" -struct UI; -struct Model_Instance; struct Line_Renderer; +struct Model_Instance; +struct Physics_Debughook; +struct UI; struct Editor_Settings { bool pause_physics; bool debug_physics; + bool debug_sat; }; void init_editor(UI* ui, World* w); @@ -19,4 +21,6 @@ void editor_update(const App& app, const Camera& cam); void editor_draw(Line_Renderer& lr); Editor_Settings& editor_settings(); +Physics_Debughook* editor_physics_debughook(); + #endif |