25 lines
485 B
C#
25 lines
485 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
using UnityEngine.UI;
|
|||
|
|
|||
|
public class RealNamePanel : BasePanel
|
|||
|
{
|
|||
|
//<2F>ر<EFBFBD>
|
|||
|
public Button btnClose;
|
|||
|
//<2F>ύ
|
|||
|
public Button btnSubmit;
|
|||
|
//<2F><><EFBFBD><EFBFBD>
|
|||
|
public InputField inputName;
|
|||
|
//<2F><><EFBFBD><EFBFBD>֤<EFBFBD><D6A4>
|
|||
|
public InputField inputSFZH;
|
|||
|
|
|||
|
public override void Init()
|
|||
|
{
|
|||
|
btnClose.onClick.AddListener(() =>
|
|||
|
{
|
|||
|
UIManager.Instance.HidePanel<RealNamePanel>();
|
|||
|
});
|
|||
|
}
|
|||
|
}
|