Exemplo n.º 1
0
 public static void RemoveCommandCenterListener(ICommandCenterListener listener)
 {
     if (Instance.commandCenterListeners.Contains(listener))
     {
         Instance.commandCenterListeners.Remove(listener);
     }
 }
Exemplo n.º 2
0
 public static void AddCommandCenterListener(ICommandCenterListener listener)
 {
     if (!Instance.commandCenterListeners.Contains(listener))
     {
         Instance.commandCenterListeners.Add(listener);
     }
 }
Exemplo n.º 3
0
 public static void RemoveCommandCenterListener(ICommandCenterListener listener)
 {
     GAState.RemoveCommandCenterListener(listener);
 }
Exemplo n.º 4
0
 public static void AddCommandCenterListener(ICommandCenterListener listener)
 {
     GAState.AddCommandCenterListener(listener);
 }