protected AbstractCommand(MonoCatBot monoCatBot, string[] ex, bool wasEncoded, string origin)
 {
     this.monoCatBot = monoCatBot;
     this.ex = ex;
     this.wasEncoded = wasEncoded;
     this.origin = origin;
 }
 public CommandEncode(MonoCatBot monoCatBot, string[] ex, bool wasEncoded, string origin, String command)
     : base(monoCatBot, ex, wasEncoded, origin)
 {
     this.command = command;
 }
Example #3
0
 public CommandPing(MonoCatBot monoCatBot, string[] ex, bool wasEncoded, string origin)
     : base(monoCatBot, ex, wasEncoded, origin)
 {
 }
 public CommandLeadMerge(MonoCatBot monoCatBot, string command)
 {
     // TODO: Complete member initialization
     this.monoCatBot = monoCatBot;
     this.command = command;
 }
 public CommandLeadCorrect(MonoCatBot monoCatBot, string command)
 {
     this.monoCatBot = monoCatBot;
     this.command = command;
 }