README: Character Save/Load System for "My Wonderful Life"

This is a working demo and documentation page for how character data is saved to a file and loaded from the user's local machine in the game My Wonderful Life.

📁 Save Character to File

Click the button below to download your character data as a text file. This allows players to save their progress.

📂 Load Character from File

To continue the game or load into a level, the player can re-upload their saved file.

💡 Notes

📜 Character JSON Example

{
  "name": "Tamera",
  "class": "Angel",
  "stats": {
    "kindness": 80,
    "courage": 95
  },
  "equipment": {
    "weapon": "Truth",
    "armor": "Compassion"
  }
}