summaryrefslogtreecommitdiff
path: root/server/src/constants.ts
blob: 2968d3a936251b77e6be62df9426891a8ff5a5d4 (plain)
1
2
3
4
5
6
export namespace Constants {
  export const SERVER_PORT = 8080;
  export const SERVER_TICK_RATE = (1 / 120) * 1000;
  export const GAME_TOPIC = 'game';
  export const MAX_PLAYERS = 8;
}