Exemplo n.º 1
0
 public static void DispatchFloat(this GlobalDispatcher self, DispatcherEvent key, float arg)
 {
     self.Dispatch <float>(key, arg);
 }
Exemplo n.º 2
0
 public static void DispatchBool(this GlobalDispatcher self, DispatcherEvent key, bool arg)
 {
     self.Dispatch <bool>(key, arg);
 }
Exemplo n.º 3
0
 public static void DispatchInt(this GlobalDispatcher self, DispatcherEvent key, int arg)
 {
     self.Dispatch <int>(key, arg);
 }
Exemplo n.º 4
0
 public static void DispatchVector2(this GlobalDispatcher self, DispatcherEvent key, Vector2 arg)
 {
     self.Dispatch <Vector2>(key, arg);
 }