using System; using ETModel; using UnityEngine; using UnityEngine.UI; namespace ETHotfix { [ObjectSystem] public class UiLobbyComponentSystem : AwakeSystem { public override void Awake(UILobbyComponent self) { self.Awake(); } } public class UILobbyComponent : Component { private GameObject enterMap; private Text text; public void Awake() { ReferenceCollector rc = this.GetParent().GameObject.GetComponent(); enterMap = rc.Get("EnterMap"); enterMap.GetComponent