UserProperty.cs 377 B

123456789101112131415
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public static class UserProperty
  6. {
  7. // Start is called before the first frame update
  8. public static int userId = 1;
  9. public static string name = "ÈÎÌìÌÃ";
  10. public static string accessToken;
  11. public static int coin = 100;
  12. public static DateTime tokenExpireTime;
  13. }