YeOldeDM / realms-of-todog

The Godot Engine Dungeon Crawl
MIT License
29 stars 4 forks source link

Save Game system #7

Open YeOldeDM opened 6 years ago

YeOldeDM commented 6 years ago

All current game data must be stored in json format.

Have a master get_save_data() function in Game. All elements that hold data needed to be saved will have a save() method, which will return a dictionary which are all collected into a master dictionary which is then saved as a json file!

Should also support multiple saved games, on a Per-Character basis. Each new character created will get their own user:// folder.

YeOldeDM commented 6 years ago

Need to be able to create new characters to be able to save multiple games. See #16