diff options
author | quou <quou@disroot.org> | 2025-01-24 00:40:06 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-01-24 00:40:06 +1100 |
commit | 7ca709069cc280969b8d71bb19a09b8aeb13b859 (patch) | |
tree | 760bd7f3974fddc9bd85390b83aa9841f54d6955 /editor.hpp | |
parent | 9aa82382b3f6a03ac4937ad46de9021840177728 (diff) |
start on physics
Diffstat (limited to 'editor.hpp')
-rw-r--r-- | editor.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |