22 lines
510 B
C#
22 lines
510 B
C#
public class PCInfoUI : PCUIMenu
|
|
{
|
|
public static PCInfoUI Ins;
|
|
private void Awake() { Ins = this; }
|
|
|
|
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();
|
|
Set_UI();
|
|
}
|
|
|
|
public void Set_UI()
|
|
{
|
|
m_PCInfoUI_List.Set(); // m_PCInfoUI_Center 는 여기서 세팅
|
|
}
|
|
} |