Interface DefenseRequest

Request help in defending a room

interface DefenseRequest {
    priority: number;
    roomName: string;
    timeout?: number;
}

Properties

priority: number

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

roomName: string

The name of the room where the defense is needed.

timeout?: number

Tick after which the request should be ignored.

Generated using TypeDoc