decla-red/backend/src/default-options.ts
2020-10-27 15:01:56 +01:00

11 lines
214 B
TypeScript

import { Options } from './options';
export const defaultOptions: Options = {
port: 3000,
name: 'Test server',
playerLimit: 16,
npcCount: 6,
seed: Math.random(),
scoreLimit: 500,
worldSize: 8000,
};