| 12345678910111213141516 |
- using System.Collections.Generic;
- using Base;
- namespace Model
- {
- public class RealmGateAddressComponent : Component
- {
- public readonly List<StartConfig> GateAddress = new List<StartConfig>();
- public StartConfig GetAddress()
- {
- int n = RandomHelper.RandomNumber(0, this.GateAddress.Count);
- return this.GateAddress[n];
- }
- }
- }
|