Packet descriptions
This commit is contained in:
25
lib/classes/packets/EstateCovenantReply.ts
Normal file
25
lib/classes/packets/EstateCovenantReply.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class EstateCovenantReplyPacket implements Packet
|
||||
{
|
||||
name = 'EstateCovenantReply';
|
||||
flags = MessageFlags.Trusted | MessageFlags.FrequencyLow;
|
||||
id = 4294901964;
|
||||
|
||||
Data: {
|
||||
CovenantID: UUID;
|
||||
CovenantTimestamp: number;
|
||||
EstateName: string;
|
||||
EstateOwnerID: UUID;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return (this.Data['EstateName'].length + 1) + 36;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user