From 73d7f8325aeb00cbaec89a1c15602b9bd85ff04e Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 7 Feb 2025 00:34:44 +1100 Subject: collision yes/no --- editor.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'editor.hpp') diff --git a/editor.hpp b/editor.hpp index afa785e..ba64a49 100644 --- a/editor.hpp +++ b/editor.hpp @@ -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 -- cgit v1.2.3-54-g00ecf