17 lines
391 B
C#
17 lines
391 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class DelAccountUI : BackKeyAdd
|
|
{
|
|
public InputField m_DelInput;
|
|
|
|
public void Submit_DelAccount()
|
|
{
|
|
if (m_DelInput.text.Equals(table_localtext.Ins.Get_Text(162)))
|
|
ServerInfo.Ins.Del_TitlePlayer();
|
|
else
|
|
ToastUI.Ins.Set(163);
|
|
}
|
|
} |