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