FurinaImpact/FurinaImpact.Gameserver/Controllers/Attributes/NetCommandAttribute.cs

15 lines
332 B
C#
Raw Normal View History

2023-12-09 03:45:08 +00:00
using FurinaImpact.Protocol;
namespace FurinaImpact.Gameserver.Controllers.Attributes;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
internal class NetCommandAttribute : Attribute
{
public CmdType CmdType { get; }
public NetCommandAttribute(CmdType cmdType)
{
CmdType = cmdType;
}
}