Ejemplo n.º 1
0
 public static void AddListenerBool(this GlobalDispatcher self, DispatcherEvent key, System.Action <bool> action)
 {
     self.AddListener <bool>(key, action);
 }
Ejemplo n.º 2
0
 public static void AddListenerInt(this GlobalDispatcher self, DispatcherEvent key, System.Action <int> action)
 {
     self.AddListener <int>(key, action);
 }
Ejemplo n.º 3
0
 public static void AddListenerVector3(this GlobalDispatcher self, DispatcherEvent key, System.Action <Vector3> action)
 {
     self.AddListener <Vector3>(key, action);
 }