diff --git a/Assets/Scripts/Network/NetworkCtrl.cs b/Assets/Scripts/Network/NetworkCtrl.cs index ac8c771..718a2ea 100644 --- a/Assets/Scripts/Network/NetworkCtrl.cs +++ b/Assets/Scripts/Network/NetworkCtrl.cs @@ -82,9 +82,11 @@ namespace Kill.Network async void Start() { - +#if UNITY_IOS platform = "IOS"; - +#else + platform = "ANDROID"; +#endif Debug.Log("Init"); await Init(); }