summaryrefslogtreecommitdiff
path: root/src/engine/levels/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/levels/index.ts')
-rw-r--r--src/engine/levels/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/engine/levels/index.ts b/src/engine/levels/index.ts
new file mode 100644
index 0000000..36291aa
--- /dev/null
+++ b/src/engine/levels/index.ts
@@ -0,0 +1,12 @@
+export * from "./LevelNames";
+export * from "./Level";
+export * from "./LevelSelection";
+export * from "./Tutorial";
+
+import { LevelNames } from ".";
+import { LevelSelection, Tutorial, Level } from ".";
+
+export const LEVELS: Level[] = [new LevelSelection(), new Tutorial()];
+export const LEVEL_PROGRESSION = {
+ [LevelNames.LevelSelection]: [LevelNames.Tutorial],
+};