summaryrefslogtreecommitdiff
path: root/src/engine/components/ComponentNames.ts
blob: fdf1a184c013dd89b0f525f289d0bff30c8b6e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 RadialObserve = "RadialObserve";
  export const GridSpawn = "GridSpawn";
  export const Text = "Text";
  export const LambdaTerm = "LambdaTerm";
  export const Life = "Life";
  export const Modal = "Modal";
}