Snowflake/RPG.Services.Gameserver/Modules/Attributes/OnCommandAttribute.cs
2024-01-19 17:45:18 +03:00

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;
}
}