summaryrefslogtreecommitdiff
path: root/editor/editor.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-11-29 21:07:06 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-11-29 21:07:06 -0500
commit9830bc2425385de6e666251fa9df6318605c639c (patch)
treee52494a973ad8957c30cf7dacf92f1fa518105dc /editor/editor.hpp
parente111f78d519363a3d76237ff0a62dcbd5e53e3d6 (diff)
major refactor to decouple the engine and the editor
Diffstat (limited to 'editor/editor.hpp')
-rw-r--r--editor/editor.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor.hpp b/editor/editor.hpp
new file mode 100644
index 0000000..3cfb2df
--- /dev/null
+++ b/editor/editor.hpp
@@ -0,0 +1,10 @@
+#ifndef PKE_EDITOR_HPP
+#define PKE_EDITOR_HPP
+
+void PkeEditor_Tick(double delta);
+void PkeEditor_Init();
+void PkeEditor_Setup();
+void PkeEditor_Disable();
+void PkeEditor_Teardown();
+
+#endif /* PKE_EDITOR_HPP */