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