Packet descriptions
This commit is contained in:
21
lib/classes/packets/PacketAck.ts
Normal file
21
lib/classes/packets/PacketAck.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
// This file has been automatically generated by writePacketClasses.js
|
||||
|
||||
import {MessageFlags} from '../../enums/MessageFlags';
|
||||
import {Packet} from '../Packet';
|
||||
|
||||
export class PacketAckPacket implements Packet
|
||||
{
|
||||
name = 'PacketAck';
|
||||
flags = MessageFlags.FrequencyFixed;
|
||||
id = 4294967291;
|
||||
|
||||
Packets: {
|
||||
ID: number;
|
||||
}[];
|
||||
|
||||
getSize(): number
|
||||
{
|
||||
return ((4) * this.Packets.length) + 1;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user