public HelpOption(TAServerInterface serverInterface) : base(serverInterface)
 {
     optionString      = "help";
     optionDescription = "Desplays all input options and describes their funcitons.";
 }
 public NumClientsOption(TAServerInterface serverInterface) : base(serverInterface)
 {
     optionString      = "num clients";
     optionDescription = "Displays the number of clients that are currently connected";
 }
 public InputOption(TAServerInterface serverInterface)
 {
     this.serverInterface = serverInterface;
 }
 public HttpOff(TAServerInterface serverInterface) : base(serverInterface)
 {
     optionString      = "httpoff";
     optionDescription = "Turn off the http listener that provides the user webpage";
 }
 public KickOption(TAServerInterface serverInterface) : base(serverInterface)
 {
     optionString      = "kick";
     optionDescription = "Begin the process of kicking a player from the server.";
 }
 public ExitOption(TAServerInterface serverInterface) : base(serverInterface)
 {
     optionString      = "exit";
     optionDescription = "Shuts down the server";
 }