PSO2SERVER/Server/Protocol/Packets/03-ServerPacket/03-2B-UnlockControlsPacket.cs

38 lines
774 B
C#
Raw Normal View History

using PSO2SERVER.Models;
using System;
2024-09-16 15:30:00 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PSO2SERVER.Protocol.Packets
2024-09-16 15:30:00 +08:00
{
2024-09-16 16:58:51 +08:00
public class UnlockControlsPacket : Packet
2024-09-16 15:30:00 +08:00
{
private readonly byte _subtype;
private readonly byte _type;
2024-09-16 16:58:51 +08:00
public UnlockControlsPacket()
{
_type = 0x03;
2024-09-16 16:58:51 +08:00
_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
2024-09-16 15:30:00 +08:00
}
}