powerfun-unity/Assets/Scripts/ConfigHelper.cs

16 lines
296 B
C#
Raw Normal View History

2021-03-22 16:05:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts
{
public class ConfigHelper
{
2021-03-25 16:53:39 +08:00
public static string Host = App.Host;
2021-03-22 16:05:40 +08:00
2021-03-25 16:53:39 +08:00
public static string AppVersion = App.AppVersion;
2021-03-22 16:05:40 +08:00
}
}