Packet descriptions
This commit is contained in:
26
lib/classes/packets/ChildAgentAlive.ts
Normal file
26
lib/classes/packets/ChildAgentAlive.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import Long = require('long');
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class ChildAgentAlivePacket implements Packet
|
||||
{
|
||||
name = 'ChildAgentAlive';
|
||||
flags = MessageFlags.Trusted | MessageFlags.FrequencyHigh;
|
||||
id = 26;
|
||||
|
||||
AgentData: {
|
||||
RegionHandle: Long;
|
||||
ViewerCircuitCode: number;
|
||||
AgentID: UUID;
|
||||
SessionID: UUID;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 44;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user