public static void AddListenerBool(this GlobalDispatcher self, DispatcherEvent key, System.Action <bool> action) { self.AddListener <bool>(key, action); }
public static void AddListenerInt(this GlobalDispatcher self, DispatcherEvent key, System.Action <int> action) { self.AddListener <int>(key, action); }
public static void AddListenerVector3(this GlobalDispatcher self, DispatcherEvent key, System.Action <Vector3> action) { self.AddListener <Vector3>(key, action); }