Project_WL/Assets/Script/UI/PC/Info/PCInfoUI.cs

22 lines
510 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
public class PCInfoUI : PCUIMenu
{
2024-12-31 03:16:50 +00:00
public static PCInfoUI Ins;
private void Awake() { Ins = this; }
2024-12-15 01:39:39 +00:00
public PCInfoUI_Left m_PCInfoUI_Left;
public PCInfoUI_Center m_PCInfoUI_Center;
public PCInfoUI_List m_PCInfoUI_List;
public override void Set()
{
base.Set();
NewGameUI.Ins.m_PCUI.Set_Money(1, 2);
m_PCInfoUI_Left.Set();
2025-02-14 07:19:07 +00:00
Set_UI();
2024-12-31 06:30:12 +00:00
}
2025-02-14 07:19:07 +00:00
public void Set_UI()
2024-12-31 06:30:12 +00:00
{
2025-02-14 07:19:07 +00:00
m_PCInfoUI_List.Set(); // m_PCInfoUI_Center 는 여기서 세팅
2024-12-15 01:39:39 +00:00
}
}