11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
export declare enum ContextVariableType {
|
|
/** Logged in users session id */
|
|
SESSION_ID = 0,
|
|
/** Currently acive raid information */
|
|
RAID_CONFIGURATION = 1,
|
|
/** Timestamp when client first connected */
|
|
CLIENT_START_TIMESTAMP = 2,
|
|
/** When player is loading into map and loot is requested */
|
|
REGISTER_PLAYER_REQUEST = 3
|
|
}
|