jsgr-mmo/src/Attributes/CommandHandlerAttribute.cs
2023-09-02 22:52:48 +02:00

10 lines
257 B
C#

namespace sodoffmmo.Attributes;
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
class CommandHandlerAttribute : Attribute {
public int ID { get; }
public CommandHandlerAttribute(int id) {
ID = id;
}
}