Esempio n. 1
0
 public static EventListener AddLimited(string name, MethodBool method, int amount = 1, params object[] targets)
 {
     return(Events.Add(name, (object)method, amount, targets));
 }
Esempio n. 2
0
 public static void Remove(string name, MethodBool method, params object[] targets)
 {
     Events.Remove(name, (object)method, targets);
 }
Esempio n. 3
0
 public static EventListener Add(string name, MethodBool method, params object[] targets)
 {
     return(Events.Add(name, (object)method, -1, targets));
 }