public bool Equals(EventHook other)
 {
     return(name == other.name && Equals(target, other.target) && Equals(tag, other.tag));
 }
Beispiel #2
0
 public static void Trigger(EventHook hook)
 {
     Trigger(hook, new EmptyEventArgs());
 }
 protected virtual void TriggerRegisteredEvent <TArgs>(EventHook hook, TArgs args)
 {
     EventBus.Trigger(hook, args);
 }