Пример #1
0
 public HelpUnit(string name, SERVER_COMMANDS command, string description, List <string> arguments = null)
 {
     this.name        = name;
     this.command     = command;
     this.description = description;
     this.arguments   = arguments == null ? new List <string>() : arguments;
 }
Пример #2
0
 public Command(SERVER_COMMANDS command, string raw_request, List <string> arguments = null)
 {
     this.command     = command;
     this.raw_request = raw_request;
     this.arguments   = arguments == null ? new List <string>() : arguments;
 }