Example #1
0
 public static void AddListenerBool(this GlobalDispatcher self, DispatcherEvent key, System.Action <bool> action)
 {
     self.AddListener <bool>(key, action);
 }
Example #2
0
 public static void AddListenerFloat(this GlobalDispatcher self, DispatcherEvent key, System.Action <float> action)
 {
     self.AddListener <float>(key, action);
 }
Example #3
0
 public static void AddListenerVector2(this GlobalDispatcher self, DispatcherEvent key, System.Action <Vector2> action)
 {
     self.AddListener <Vector2>(key, action);
 }