diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-30 15:09:24 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-12-30 15:09:24 +0100 |
| commit | 27ac369fb6b773f642eabed087194ff7e95f9156 (patch) | |
| tree | baa1627d2a24f79f3b2bbdabcae8e21c61be1da1 /src/base_tab/gamebase/GameBase.hpp | |
| parent | eec973bc05c0a7e0c511b392704c6d093c2820b4 (diff) | |
Enable game saving
Diffstat (limited to 'src/base_tab/gamebase/GameBase.hpp')
| -rw-r--r-- | src/base_tab/gamebase/GameBase.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base_tab/gamebase/GameBase.hpp b/src/base_tab/gamebase/GameBase.hpp index b84047b..1ef5f59 100644 --- a/src/base_tab/gamebase/GameBase.hpp +++ b/src/base_tab/gamebase/GameBase.hpp @@ -43,4 +43,5 @@ std::shared_ptr<GameBase> OpenDatabase(const std::string &dbpath, bool createIfN * @param id * @return std::shared_ptr<Game> */ -std::shared_ptr<Game> OpenGameX(const std::string &dbpath, long id);
\ No newline at end of file +std::shared_ptr<Game> OpenGameX(const std::string &dbpath, long id); +void SaveGame(const std::string &dbpath, std::shared_ptr<Game> g);
\ No newline at end of file |
