Files
node-metaverse/lib/classes/packets/LiveHelpGroupReply.ts

25 lines
566 B
TypeScript
Raw Normal View History

2017-11-24 03:32:37 +00:00
// This file has been automatically generated by writePacketClasses.js
import {UUID} from '../UUID';
import {MessageFlags} from '../../enums/MessageFlags';
import {Packet} from '../Packet';
export class LiveHelpGroupReplyPacket implements Packet
{
name = 'LiveHelpGroupReply';
flags = MessageFlags.Trusted | MessageFlags.FrequencyLow;
id = 4294902140;
ReplyData: {
RequestID: UUID;
GroupID: UUID;
Selection: string;
};
getSize(): number
{
return (this.ReplyData['Selection'].length + 1) + 32;
}
}