jumpstorm/engine/systems/names.ts

10 lines
317 B
TypeScript
Raw Normal View History

2023-07-19 23:38:24 -04:00
export namespace SystemNames {
2023-08-25 18:48:17 -04:00
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';
2023-07-19 23:38:24 -04:00
}