forked from SoDOff-Project/sodoff-mmo
10 lines
257 B
C#
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;
|
|
}
|
|
} |