Ejemplo n.º 1
0
 public static void RegisterAsListener(this System.Object objectToNotify, string tag, params System.Type[] GameEventTypes)
 {
     GameEventManagerProxy.Get().Register(objectToNotify, tag, GameEventTypes);
 }
Ejemplo n.º 2
0
 public static void UnregisterAsListener(this System.Object objectToNotify, string tag)
 {
     GameEventManagerProxy.Get().Unregister(objectToNotify, tag);
 }
Ejemplo n.º 3
0
 public void Push()
 {
     GameEventManagerProxy.Get().PushGameEvent(this, m_Protocol);
 }