I have a complex json file with members within members. However I would like to add and remove a new member line to the save file for players. What is the best approach to do it?
eg: I want to change the below
{ "money": 325, "health": 50, "mana": 30 }
to this:
{ "game": { "money": 0, "health": 0, "mana": 0 } }
without modifying the player’s stat but just changing the format