From 9830bc2425385de6e666251fa9df6318605c639c Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Wed, 29 Nov 2023 21:07:06 -0500 Subject: major refactor to decouple the engine and the editor --- editor/editor.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 editor/editor.hpp (limited to 'editor/editor.hpp') 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 */ -- cgit v1.2.3