Packet descriptions
This commit is contained in:
27
lib/classes/packets/DataHomeLocationReply.ts
Normal file
27
lib/classes/packets/DataHomeLocationReply.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {Vector3} from '../Vector3';
|
||||
import Long = require('long');
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class DataHomeLocationReplyPacket implements Packet
|
||||
{
|
||||
name = 'DataHomeLocationReply';
|
||||
flags = MessageFlags.Trusted | MessageFlags.FrequencyLow;
|
||||
id = 4294901828;
|
||||
|
||||
Info: {
|
||||
AgentID: UUID;
|
||||
RegionHandle: Long;
|
||||
Position: Vector3;
|
||||
LookAt: Vector3;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 48;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user