summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs b/Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs
new file mode 100644
index 00000000..94606ed2
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/UI/XTeamInvitedListBehaviour.cs
@@ -0,0 +1,33 @@
+using System;
+using UILib;
+using UnityEngine;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient.UI
+{
+ internal class XTeamInvitedListBehaviour : DlgBehaviourBase
+ {
+ public IXUIButton m_Close = null;
+
+ public IXUIButton m_BtnIgnore;
+
+ public IXUIButton m_BtnDeny;
+
+ public IXUIScrollView m_ScrollView;
+
+ public IXUIWrapContent m_WrapContent;
+
+ public GameObject m_NoInvitation;
+
+ private void Awake()
+ {
+ this.m_Close = (base.transform.Find("Bg/Bg2/Close").GetComponent("XUIButton") as IXUIButton);
+ Transform transform = base.transform.Find("Bg");
+ this.m_BtnIgnore = (transform.Find("BtnIgnore").GetComponent("XUIButton") as IXUIButton);
+ this.m_BtnDeny = (transform.Find("BtnDeny").GetComponent("XUIButton") as IXUIButton);
+ this.m_ScrollView = (transform.Find("Panel").GetComponent("XUIScrollView") as IXUIScrollView);
+ this.m_WrapContent = (transform.Find("Panel/WrapContent").GetComponent("XUIWrapContent") as IXUIWrapContent);
+ this.m_NoInvitation = transform.Find("NoInvitation").gameObject;
+ }
+ }
+}