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