From 07f508365f619d6bfe0a074dcf98c5ae8db17f08 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sat, 1 Mar 2025 15:31:27 -0700 Subject: add carcadr level --- src/engine/levels/index.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/engine/levels/index.ts') 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 = { [LevelNames.LevelSelection]: [LevelNames.Tutorial], + [LevelNames.Tutorial]: [LevelNames.CarCadr], }; -- cgit v1.2.3-70-g09d2