Save system: ceremonial PR #42

Merged
pyrex merged 11 commits from savesystem into main 2025-02-25 04:14:02 +00:00
Showing only changes of commit 58b8bbc27b - Show all commits

View File

@ -15,15 +15,22 @@ const N_TURNS: number = 9;
export class StateManager {
#turn: number;
#revision: number;
constructor() {
this.#turn = 1;
this.#revision = 1;
}
getTurn(): number {
return this.#turn;
}
nextRevision(): number {
this.#revision++;
return this.#revision;
}
startFirstGame() {
getVNModal().play([
...openingScene,