Packet descriptions
This commit is contained in:
28
lib/classes/packets/EventLocationReply.ts
Normal file
28
lib/classes/packets/EventLocationReply.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {Vector3} from '../Vector3';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class EventLocationReplyPacket implements Packet
|
||||
{
|
||||
name = 'EventLocationReply';
|
||||
flags = MessageFlags.Trusted | MessageFlags.Zerocoded | MessageFlags.FrequencyLow;
|
||||
id = 4294902068;
|
||||
|
||||
QueryData: {
|
||||
QueryID: UUID;
|
||||
};
|
||||
EventData: {
|
||||
Success: boolean;
|
||||
RegionID: UUID;
|
||||
RegionPos: Vector3;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 45;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user