123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using LitJson;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace rtc
- {
- public class UserInfo
- {
- public static string avatar;
- public static Texture textIcon;
- public static string defaultavatar;
- public static Texture defaulttextIcon;
- public static string phone = string.Empty;
- public static string UnionId = string.Empty;
- public static string PassWord = string.Empty;
-
- public static int activateType;
-
- public static double indate;
-
- public static string userName = string.Empty;
- public static bool isSN;
-
- public static string Serialno = string.Empty;
-
- public static string Account = string.Empty;
-
- public static string AppID = string.Empty;
-
- public static string Token = string.Empty;
-
- public static string User_Token = string.Empty;
-
- public static string uid = string.Empty;
- public static JsonData UserIconData;
- public static bool isRemindTip
- {
- get
- {
- return PlayerPrefs.GetInt("isRemindTip") == 1 ? true : false;
- }
- }
-
-
-
-
- public static bool isVistorAccount()
- {
- return Serialno == Account;
- }
-
-
-
-
- public static bool isLogin()
- {
- return Account != string.Empty;
- }
- public static string BusyType = "free/busy";
-
- }
- }
|