summaryrefslogtreecommitdiff
path: root/src/game.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 /src/game.hpp
parente111f78d519363a3d76237ff0a62dcbd5e53e3d6 (diff)
major refactor to decouple the engine and the editor
Diffstat (limited to 'src/game.hpp')
-rw-r--r--src/game.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game.hpp b/src/game.hpp
index d28bc9c..3e21c26 100644
--- a/src/game.hpp
+++ b/src/game.hpp
@@ -7,5 +7,7 @@ void Game_Main(PKEWindowProperties *windowProps);
void Game_Init();
void Game_Tick(double delta);
void Game_Teardown();
+void Game_SaveSceneFile(const char *);
+void Game_LoadSceneFile(const char *);
#endif /* PKE_GAME_HPP */