|
@@ -10,6 +10,7 @@ namespace GFGGame
|
|
|
|
|
|
public static string LoginAddress;
|
|
|
public static string PlatformName;
|
|
|
+ public static int showGM;
|
|
|
|
|
|
public static void InitData(string json)
|
|
|
{
|
|
@@ -18,12 +19,14 @@ namespace GFGGame
|
|
|
LoginAddress = result.loginApiUrl;
|
|
|
//LoginAddress = "10.108.64.127:10005";
|
|
|
PlatformName = result.platformName;
|
|
|
+ showGM = result.showGM;
|
|
|
}
|
|
|
|
|
|
private struct Result
|
|
|
{
|
|
|
public string loginApiUrl;
|
|
|
public string platformName;
|
|
|
+ public int showGM;
|
|
|
}
|
|
|
}
|
|
|
}
|