Interface WorkRequest

Request help in building/fortifying a room

interface WorkRequest {
    priority: number;
    roomName: string;
    timeout?: number;
    workType: WorkType;
}

Properties

priority: number

The priority of the work request, ranging from 0 to 1 where 1 is the highest consideration.

roomName: string

The name of the room where the work is needed.

timeout?: number

Tick after which the request should be ignored.

workType: WorkType

The type of work needed.

Generated using TypeDoc