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.
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 asave()
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.