Esempio n. 1
0
 public static void Help(string args, Terminal Context)
 {
     foreach (string StringToOut in CLICommon.GetHelp("default"))
     {
         Context.SendOut(StringToOut);
     }
 }
Esempio n. 2
0
 public string[] GetTabCompletes(string ToCheck)
 {
     return(CLICommon.GetAutoCompletes("pwntl", ToCheck));
 }
Esempio n. 3
0
 public void ParseIn(string Command, Terminal Context)
 {
     History.Add(Command);
     CLICommon.RunCommand("pwntl", Command, this, Context);
 }