This commit is contained in:
2026-04-11 17:13:54 -04:00
parent 18a0fd249c
commit f38fd535fb
6 changed files with 111 additions and 11 deletions

View File

@@ -2,6 +2,7 @@ from data.cat import Cat
from systems.ui import clear, title
from systems.world import shelter
import systems.ui as ui
import data.save
class Game:
@@ -10,6 +11,9 @@ class Game:
def new_game(self):
self.cat = shelter()
print("Saving...")
data.save.save(self.cat)
print("Save complete.")
self.game_loop()
def game_loop(self):