Files
KianaBH3/GameServer/Server/Packet/Opcode.cs
2025-06-14 11:15:32 +08:00

7 lines
165 B
C#

namespace KianaBH.GameServer.Server.Packet;
[AttributeUsage(AttributeTargets.Class)]
public class Opcode(int cmdId) : Attribute
{
public int CmdId = cmdId;
}