|
@@ -23,11 +23,14 @@ namespace GFGGame
|
|
|
|
|
|
public static void Init()
|
|
|
{
|
|
|
- netType = EnumNetType.LOCAL;
|
|
|
- string cfgName = "cfg_local";
|
|
|
+ Debug.Log($"identifier: {Application.identifier}");
|
|
|
#if PT_DEV
|
|
|
//ÍâÍødev°æ±¾
|
|
|
+ netType = EnumNetType.DEV;
|
|
|
cfgName = "cfg_dev";
|
|
|
+#else
|
|
|
+ netType = EnumNetType.LOCAL;
|
|
|
+ string cfgName = "cfg_local";
|
|
|
#endif
|
|
|
|
|
|
string url = $"http://39.99.144.134/res_dev/platform/{cfgName}.json";
|