예제 #1
0
 public static void    CheckIfClientIsStarted()
 {
     if (!NetworkStatus.IsClientDisconnected())
     {
         throw new System.Exception("Client already started");
     }
 }
예제 #2
0
 public static bool    IsClientActive()
 {
     return(!NetworkStatus.IsClientDisconnected());
 }