blob: 11b8c75ebb13bea98915269d2410ee2673ce8b72 (
plain)
1
2
3
4
5
6
7
|
export namespace Constants {
export const HOST = '0.0.0.0';
export const SERVER_PORT = 8080;
export const SERVER_TICK_RATE = (1 / 120) * 1000;
export const GAME_TOPIC = 'game';
export const MAX_PLAYERS = 8;
}
|