summaryrefslogtreecommitdiff
path: root/src/engine/levels/index.ts
blob: 36291aa247e59ade31faaadf8ba9deb82f242007 (plain)
1
2
3
4
5
6
7
8
9
10
11
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],
};