コード例 #1
0
ファイル: ServerTCP.cs プロジェクト: Den25570/TankGame
    private void CloseClient(int Index)
    {
        closing = true;
        Debug.Log("Connection from " + Ip + " has been terminated");
        //PlayerLeft
        hostServer.SendClientDisconnect();
        Socket.Close();

        Socket = null;
    }