Project_WL/Assets/Script/UI/ETC/DelAccountUI.cs

14 lines
307 B
C#
Raw Normal View History

using TMPro;
2024-12-15 01:39:39 +00:00
public class DelAccountUI : BackKeyAdd
{
public TMP_InputField m_DelInput;
2024-12-15 01:39:39 +00:00
public void Submit_DelAccount()
{
if (m_DelInput.text.Equals(table_localtext.Ins.Get_Text(162)))
ServerInfo.Ins.Del_TitlePlayer();
else
ToastUI.Ins.Set(163);
}
}