Packet descriptions
This commit is contained in:
24
lib/classes/packets/InventoryAssetResponse.ts
Normal file
24
lib/classes/packets/InventoryAssetResponse.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {UUID} from '../UUID';
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class InventoryAssetResponsePacket implements Packet
|
||||
{
|
||||
name = 'InventoryAssetResponse';
|
||||
flags = MessageFlags.Trusted | MessageFlags.FrequencyLow;
|
||||
id = 4294902043;
|
||||
|
||||
QueryData: {
|
||||
QueryID: UUID;
|
||||
AssetID: UUID;
|
||||
IsReadable: boolean;
|
||||
};
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return 33;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user