- using System;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public static class UserProperty
- {
- // Start is called before the first frame update
- public static int userId = 1;
- public static string name = "任天堂";
- public static int coin = 100;
- public static DateTime tokenExpireTime;
- }
|