package ch.epfl.lca.sc250; public class PlayerProgram { TCPClient tcpC; UDPServer udpS; ServentServer svS; ServentClient svC; public PlayerProgram ( ) { tcpC = new TCPClient("in3sun23.epfl.ch", 13370, "x-way"); } public void launch ( ) { } public static void main ( String[] args ) { PlayerProgram p = new PlayerProgram(); p.launch(); } }