forked from noxious/server
19 lines
283 B
TypeScript
19 lines
283 B
TypeScript
import { Entity, PrimaryKey, Property } from '@mikro-orm/core';
|
|
|
|
@Entity()
|
|
export class World {
|
|
@PrimaryKey()
|
|
date = new Date();
|
|
|
|
@Property()
|
|
isRainEnabled = false;
|
|
|
|
@Property()
|
|
rainPercentage = 0;
|
|
|
|
@Property()
|
|
isFogEnabled = false;
|
|
|
|
@Property()
|
|
fogDensity = 0;
|
|
} |