18 lines
453 B
C#
Raw Normal View History

using Assets.Scripts.Apis.Models;
using System.Collections;
2021-03-25 16:53:39 +08:00
using System.Collections.Generic;
using UnityEngine;
public static class App
{
public static string Host = "http://192.168.0.97:5082/";
2021-03-25 16:53:39 +08:00
public static string AppVersion = "1.0.0";
public static int RouteIdParam = 0;
public static UserResultModel CurrentUser { get; set; }
2021-04-12 17:35:56 +08:00
public static IDictionary<string,Texture> TextureCache = new Dictionary<string, Texture>();
2021-03-25 16:53:39 +08:00
}