123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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;
- }
- }
|