blob: aec14c5ab7cca712ea47909a7b1dd2eef32ab1d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export namespace ComponentNames {
export const Sprite = "Sprite";
export const FacingDirection = "FacingDirection";
export const Grid = "Grid";
export const BoundingBox = "BoundingBox";
export const Control = "Control";
export const Highlight = "Highlight";
export const Interactable = "Interactable";
export const Pushable = "Pushable";
export const Colliding = "Colliding";
export const RadialObserve = "RadialObserve";
export const GridSpawn = "GridSpawn";
export const Text = "Text";
export const LambdaTerm = "LambdaTerm";
export const Life = "Life";
export const Modal = "Modal";
}
|