예제 #1
0
파일: Client.cs 프로젝트: jackmott/galaxy
 public void Cleanup()
 {
     LogicLayer.RemoveClientFromAll(this);
     //persist player
     DataLayer.UpdateGalaxyPlayer(Player);
     if (GalaxyTcpClient != null)
     {
         GalaxyTcpClient.Close();
     }
     if (GalaxyUdpClient != null)
     {
         GalaxyUdpClient.Close();
     }
 }