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