blob: 1f41d18827eba89e1a82696ff2468cd88b0b811a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 LambdaSpawn = "LambdaSpawn";
export const Text = "Text";
}
|