Moar Gamecraft commands!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
334B

  1. using System;
  2. namespace ExtraCommands
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
  5. public class CustomCommandAttribute: Attribute
  6. {
  7. public string Name { get; protected set; }
  8. public CustomCommandAttribute(string name = "")
  9. {
  10. this.Name = name;
  11. }
  12. }
  13. }