blob: a2b3d12b66896890b8f73fc6b1020aca95b71a8c (
plain) (
blame)
1
2
3
4
5
6
|
export namespace Constants {
export const SERVER_PORT = 8080;
export const SERVER_TICK_RATE = (1 / 60) * 1000;
export const GAME_TOPIC = 'game';
export const MAX_PLAYERS = 8;
}
|