This commit is contained in:
2026-06-24 17:26:03 -04:00
parent d224d08457
commit f40565d861
5 changed files with 11 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import os
import time
from untitled import PACKAGE_ROOT, content, screens, ui
from untitled import PACKAGE_ROOT, content, model, persistence, screens, ui
class App:
@@ -37,4 +37,8 @@ class App:
"New Game"
): # the current unixtime is 1782171466 as of writing this comment, oh wait, that would create a paradox, wait, nevermind, ESTIMATE OKAY?
# yayyyyy
screens.adoption()
cat = screens.adoption()
save = model.Save(content.SAVE_VERSION, cat)
print("Saving...")
persistence.save(save)
print("Save complete.")