Esempio n. 1
0
        public void StopClient()
        {
#if UNITY_WEBGL
            wsClient.StopClient();
#else
            if (Client != null)
            {
                Client.Stop();
            }
            Client = null;
#endif
        }
Esempio n. 2
0
 public void StopClient()
 {
     wsClient.StopClient();
 }