public static void RemoveUpdateObject(SimulationObject update) { if (!UpdateObjects.Contains(update)) { UpdateObjects.Remove(update); } }
public static void AddUpdateObject(SimulationObject update) { if (!UpdateObjects.Contains(update)) { UpdateObjects.Add(update); } }