9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { Options } from './options';
|
|
|
|
export const defaultOptions: Options = {
|
|
port: 3000,
|
|
name: 'Localhost',
|
|
playerLimit: 16,
|
|
seed: 51,
|
|
worldSize: 10000,
|
|
};
|