Files
rougelike-demo/server/src/config/world.config.ts

24 lines
459 B
TypeScript
Raw Normal View History

/**
*
*/
export const WorldConfig = {
/** 世界宽度 */
WORLD_WIDTH: 100,
/** 世界高度 */
WORLD_HEIGHT: 100,
/** 出生区域半径(距离中心点) */
SPAWN_RADIUS: 20,
/** 世界中心点 X 坐标 */
get CENTER_X() {
return this.WORLD_WIDTH / 2;
},
/** 世界中心点 Y 坐标 */
get CENTER_Y() {
return this.WORLD_HEIGHT / 2;
}
} as const;