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

16 lines
318 B
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
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;
}
}