1
0
2025-10-07 13:22:42 -07:00

21 lines
453 B
TypeScript

export const MAX_SETTLEMENTS = 5;
export const MAX_CITIES = 4;
export const MAX_ROADS = 15;
export const types: string[] = [ 'wheat', 'stone', 'sheep', 'wood', 'brick' ];
export const debug = {
audio: false,
get: true,
set: true,
update: false,
road: false
};
export const all = `[ all ]`;
export const info = `[ info ]`;
export const todo = `[ todo ]`;
export const SEND_THROTTLE_MS = 50;
export const INCOMING_GET_BATCH_MS = 20;