public void ActivateNextStation() { stationIndex += 1; if (stationIndex < Stations.Count) { _spotlight.Activate(); Stations[stationIndex].Activate(); } else { stationIndex -= 1; } }