mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
7 lines
168 B
C#
7 lines
168 B
C#
namespace EggLink.DanhengServer.Server.Packet;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class Opcode(int cmdId) : Attribute
|
|
{
|
|
public int CmdId = cmdId;
|
|
} |