summaryrefslogtreecommitdiff
path: root/src/engine/systems/SystemNames.ts
blob: 1ed989481e4efd210a93f21a46e3af4719e64bc4 (plain)
1
2
3
4
5
6
7
8
export namespace SystemNames {
  export const Render = "Render";
  export const Physics = "Physics";
  export const Input = "Input";
  export const Collision = "Collision";
  export const WallBounds = "WallBounds";
  export const FacingDirection = "FacingDirection";
}