EQApplicationPacket(EmuOpcode op, byte[] pBuffer, UInt32 size) : base(op, pBuffer, size) { }
EQApplicationPacket(EmuOpcode op) : base(op, null, 0) { }
EQApplicationPacket(EmuOpcode op, UInt32 size) : base(op, null, size) { }
public EQPacket(EmuOpcode op, byte[] pBuffer, UInt32 size) { this.pBuffer = pBuffer; this.Emu_Opcode = op; this.Size = size; }