Forest_Client/Forest/Assets/PhxhSDK/Phxh/Game/UserInfo.cs

16 lines
318 B
C#

using PhxhSDK;
public class UserInfo
{
public string UserID;
public string ThirdId;
public float TotalRecharge = 0f;
public ulong Version = 0;
public UserInfo(string userID = null)
{
if (userID == null)
userID = DeviceHelper.GetDeviceId();
UserID = userID;
}
}