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