diff options
Diffstat (limited to 'src/engine/levels/index.ts')
-rw-r--r-- | src/engine/levels/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/levels/index.ts b/src/engine/levels/index.ts index 36291aa..bae7fea 100644 --- a/src/engine/levels/index.ts +++ b/src/engine/levels/index.ts @@ -7,6 +7,6 @@ import { LevelNames } from "."; import { LevelSelection, Tutorial, Level } from "."; export const LEVELS: Level[] = [new LevelSelection(), new Tutorial()]; -export const LEVEL_PROGRESSION = { +export const LEVEL_PROGRESSION: Record<string, string[]> = { [LevelNames.LevelSelection]: [LevelNames.Tutorial], }; |