2024-12-20 05:43:00 +00:00
|
|
|
using TMPro;
|
2024-12-15 01:39:39 +00:00
|
|
|
|
|
|
|
|
public class DelAccountUI : BackKeyAdd
|
|
|
|
|
{
|
2024-12-20 05:43:00 +00:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|