-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectsList.ts
More file actions
32 lines (31 loc) · 894 Bytes
/
ObjectsList.ts
File metadata and controls
32 lines (31 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import {Aligner} from "./Objects/Aligner";
import {BaseParticleSystem} from "./Objects/BaseParticleSystem";
import {BlackScreen} from "./Objects/BlackScreen";
import {Board} from "./Objects/Board";
import {Button} from "./Objects/Button";
import {Camera} from "./Objects/Camera";
import {IO} from "./Objects/IO";
import {O} from "./Objects/O";
import {ParticleSystem} from "./Objects/ParticleSystem";
import {TextBox} from "./Objects/TextBox";
import {ToolBar} from "./Objects/ToolBar";
export let ObjectNames = {
Aligner :Aligner,
BaseParticleSystem :BaseParticleSystem,
BlackScreen :BlackScreen,
Board :Board,
Button :Button,
Camera :Camera,
IO :IO,
O :O,
ParticleSystem :ParticleSystem,
TextBox :TextBox,
ToolBar :ToolBar,
};
export let LevelNames = [
"levels/game.tmx",
"levels/helplevel1.tmx",
"levels/menu.tmx",
"levels/modal.tmx",
"levels/npgame.tsx",
];