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