/**
|
* 全局配置
|
* @Author: chenxin
|
* @Date: 2020-10-14 10:40:24
|
*/
|
namespace KTGMGemClient
|
{
|
public class GameConfig
|
{
|
/// <summary>
|
/// LoadingScene 载入下一个场景的场景名
|
/// </summary>
|
public static string NextSceneName = "GemBattle";
|
|
public static bool IsDebug = false;
|
public static string TestLoginUrl = "http://10.5.3.227:9000/user/login";
|
public static string LoginUrl = "http://172.16.1.52:9000/user/login";
|
public static bool OpenDebug = true;
|
|
}
|
}
|