RealmGateAddressHelper.cs 296 B

12345678910111213141516
  1. using ETModel;
  2. namespace ETHotfix
  3. {
  4. public static class RealmGateAddressHelper
  5. {
  6. public static StartConfig GetGate()
  7. {
  8. int count = StartConfigComponent.Instance.Gates.Count;
  9. int n = RandomHelper.RandomNumber(0, count);
  10. return StartConfigComponent.Instance.Gates[n];
  11. }
  12. }
  13. }