Exemple #1
0
 public PropertyCommandTrigger(IrcBotPlugin plugin, OnCommandAttribute attribute, PropertyInfo property)
     : base(plugin, attribute)
 {
     Property = property;
 }
Exemple #2
0
 public MethodCommandTrigger(IrcBotPlugin plugin, OnCommandAttribute attribute, MethodInfo method)
     : base(plugin, attribute)
 {
     Method = method;
 }
Exemple #3
0
 public CommandTrigger(IrcBotPlugin plugin, OnCommandAttribute attribute)
     : base(plugin)
 {
     Attribute = attribute;
 }