using System.Collections; using System.Collections.Generic; using UnityEngine; namespace SC.XR.Unity.Module_PlatformAccount { public abstract class PlatformAccountMgr { private static PlatformAccountMgr instance; public static PlatformAccountMgr Instance { get { if (instance != null) { return instance; } else { instance = new PlatformAccountManager(); } return instance; } } public abstract PlatformAccountConfig PlatformAccountConfig { get; set; } // ReLogin public LoginType loginType; public bool rememberPwd; public string phone; public string diallingCode; public string smsCode; public string account; public string password; public string captcha; // ResetPassword public ResetType resetType; public GameObject defaultMenu; public GameObject codeMenu; // CodeError public BaseUIForms lastUIForms; } }