/// <summary>
 /// Remove a manager from the system.
 /// </summary>
 /// <param name="manager"></param>
 /// <returns> Whether the manager was removed. </returns>
 public static bool RemoveManager(IManager manager)
 {
     if (instance != null) // Ensure the instance exists
     {
         return(instance.Remove(manager));
     }
     else // Instance doesn't exist, cannot remove manager
     {
         return(false);
     }
 }