using System; using Model; using UnityEngine; using UnityEngine.UI; namespace Hotfix { [ObjectSystem] public class UiLobbyComponentSystem : ObjectSystem, IAwake { public void Awake() { this.Get().Awake(); } } public class UILobbyComponent : Component { private GameObject enterMap; private Text text; public void Awake() { ReferenceCollector rc = this.GetParent().GameObject.GetComponent(); GameObject sendBtn = rc.Get("Send"); GameObject sendRpcBtn = rc.Get("SendRpc"); sendBtn.GetComponent