PSO2SERVER/Server/Protocol/Packets/03-ServerPacket/03-2B-UnlockControlsPacket.cs
2024-11-27 18:05:53 +08:00

38 lines
774 B
C#

using PSO2SERVER.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PSO2SERVER.Protocol.Packets
{
public class UnlockControlsPacket : Packet
{
private readonly byte _subtype;
private readonly byte _type;
public UnlockControlsPacket()
{
_type = 0x03;
_subtype = 0x2B;
}
#region implemented abstract members of Packet
public override byte[] Build()
{
return new byte[0];
}
public override PacketHeader GetHeader()
{
return new PacketHeader
{
Type = _type,
Subtype = _subtype
};
}
#endregion
}
}