diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-03 13:58:38 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-03 13:58:38 -0400 |
commit | 95cc88ad5f6c2abb4890d00a57ae4ad0db030e9b (patch) | |
tree | 77228c3f7ddb0e8358e9940fe851cb05b1c4f606 /src/engine.cpp | |
parent | 752438f0be9e4940556ebcc633165cd0b9c17c6f (diff) |
added load message
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 9c0b09b..e959f21 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -48,7 +48,10 @@ int Engine::init(void) // Load game script and entity data systems.system<ScriptSystem>()->init(); - GameState::load("save.json", entities); + if (GameState::load("save.json", entities)) { + std::cout << "Loaded from save.json. Delete the file if you don't want " + "it." << std::endl; + } return 0; } |