summaryrefslogtreecommitdiff
path: root/src/engine/systems/Level.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2025-03-01 15:31:27 -0700
committerElizabeth Hunt <elizabeth@simponic.xyz>2025-03-01 15:31:27 -0700
commit07f508365f619d6bfe0a074dcf98c5ae8db17f08 (patch)
tree16b2a072998452ad72529e3d617f5c4a2df63c0c /src/engine/systems/Level.ts
parent309ed20627ed798c464a9f97d9c32ceb1a314595 (diff)
downloadthe-abstraction-engine-07f508365f619d6bfe0a074dcf98c5ae8db17f08.tar.gz
the-abstraction-engine-07f508365f619d6bfe0a074dcf98c5ae8db17f08.zip
add carcadr level
Diffstat (limited to 'src/engine/systems/Level.ts')
-rw-r--r--src/engine/systems/Level.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine/systems/Level.ts b/src/engine/systems/Level.ts
index 824895d..99fe452 100644
--- a/src/engine/systems/Level.ts
+++ b/src/engine/systems/Level.ts
@@ -3,6 +3,7 @@ import { Game } from "..";
import { type Level as LevelType, LEVELS, LEVEL_PROGRESSION } from "../levels";
export class Level extends System {
+ // TODO: read from localstorage
private unlockedLevels: Set<string> = new Set();
private currentLevel: LevelType | null = null;
private moveToLevel: string | null;