14 lines
299 B
C#
14 lines
299 B
C#
using RPG.Network.Proto;
|
|
|
|
namespace RPG.Services.Gameserver.Modules.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
internal class OnCommandAttribute : Attribute
|
|
{
|
|
public CmdType CmdType { get; }
|
|
|
|
public OnCommandAttribute(CmdType cmdType)
|
|
{
|
|
CmdType = cmdType;
|
|
}
|
|
}
|