NahidaImpact/NahidaImpact.Gameserver/Controllers/Attributes/NetCommandAttribute.cs

10 lines
272 B
C#
Raw Normal View History

2024-01-04 13:48:39 +00:00
using NahidaImpact.Protocol;
namespace NahidaImpact.Gameserver.Controllers.Attributes;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
internal class NetCommandAttribute(CmdType cmdType) : Attribute
{
public CmdType CmdType { get; } = cmdType;
}