using System.Collections.Generic; namespace ET.Server { public static class RealmGameAddressHelper { public static StartSceneConfig GetGame(int zone) { List zoneGates = StartSceneConfigCategory.Instance.Games[zone]; int n = RandomGenerator.RandomNumber(0, zoneGates.Count); return zoneGates[n]; } } }