diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-29 21:07:06 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-29 21:07:06 -0500 |
| commit | 9830bc2425385de6e666251fa9df6318605c639c (patch) | |
| tree | e52494a973ad8957c30cf7dacf92f1fa518105dc /editor/editor.hpp | |
| parent | e111f78d519363a3d76237ff0a62dcbd5e53e3d6 (diff) | |
major refactor to decouple the engine and the editor
Diffstat (limited to 'editor/editor.hpp')
| -rw-r--r-- | editor/editor.hpp | 10 |
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 */ |
