| 123456789101112131415161718192021222324252627282930 |
- using Model;
- namespace Hotfix
- {
- [ObjectSystem]
- public class RealmGateAddressComponentSystem : ObjectSystem<RealmGateAddressComponent>, IStart
- {
- public void Start()
- {
- this.Get().Start();
- }
- }
-
- public static class RealmGateAddressComponentEx
- {
- public static void Start(this RealmGateAddressComponent component)
- {
- StartConfig[] startConfigs = component.Parent.GetComponent<StartConfigComponent>().GetAll();
- foreach (StartConfig config in startConfigs)
- {
- if (!config.AppType.Is(AppType.Gate))
- {
- continue;
- }
-
- component.GateAddress.Add(config);
- }
- }
- }
- }
|