summaryrefslogtreecommitdiff
path: root/editor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor.hpp')
-rw-r--r--editor.hpp8
1 files changed, 6 insertions, 2 deletions
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