예제 #1
0
 public MacroTriggerBase(string code, string name, string description, HumanReadableMethodDelegate humanReadableMethod)
 {
     this.Code                = code;
     this.Name                = name;
     this.Description         = description;
     this.humanReadableMethod = humanReadableMethod;
 }
예제 #2
0
 public AllArgumentsMatchStrict(string code, string name, string description, HumanReadableMethodDelegate humanReadableMethod)
     : base(code, name, description, humanReadableMethod)
 {
 }
예제 #3
0
 public SimpleArgumentMatch(string code, string name, string description, HumanReadableMethodDelegate humanReadableMethod)
     : base(code, name, description, humanReadableMethod)
 {
 }