예제 #1
0
 private static void CheckAndResendClients()
 {
     foreach (string client in WorldSocket.Clients.Keys)
     {
         WorldClient otherclient = WorldSocket.Clients[client] as WorldClient;
         otherclient.CheckAndResend();
     }
 }