Interface AttackRequest

Request an attack on a specific room

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

Properties

priority: number

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

roomName: string

The name of the room where the attack is needed.

timeout?: number

Tick after which the request should be ignored.

Generated using TypeDoc