Packet descriptions
This commit is contained in:
28
lib/classes/packets/MoveInventoryFolder.ts
Normal file
28
lib/classes/packets/MoveInventoryFolder.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class MoveInventoryFolderPacket implements Packet
|
||||
{
|
||||
name = 'MoveInventoryFolder';
|
||||
flags = MessageFlags.Zerocoded | MessageFlags.FrequencyLow;
|
||||
id = 4294902035;
|
||||
|
||||
AgentData: {
|
||||
AgentID: UUID;
|
||||
SessionID: UUID;
|
||||
Stamp: boolean;
|
||||
};
|
||||
InventoryData: {
|
||||
FolderID: UUID;
|
||||
ParentID: UUID;
|
||||
}[];
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return ((32) * this.InventoryData.length) + 34;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user