From 7ca709069cc280969b8d71bb19a09b8aeb13b859 Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 24 Jan 2025 00:40:06 +1100 Subject: start on physics --- editor.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'editor.hpp') diff --git a/editor.hpp b/editor.hpp index a809d6d..77c7e9e 100644 --- a/editor.hpp +++ b/editor.hpp @@ -7,9 +7,15 @@ struct UI; struct Model_Instance; struct Line_Renderer; +struct Editor_Settings { + bool pause_physics; + bool debug_physics; +}; + void init_editor(UI* ui, World* w); void deinit_editor(); void editor_on_select(Entity_Id e, int m); void editor_draw(Line_Renderer& lr); +Editor_Settings& editor_settings(); #endif -- cgit v1.2.3-54-g00ecf