コード例 #1
0
ファイル: Networking.cs プロジェクト: toddan/TicTacToe
 public Networking(ServerConnection Conn)
 {
     Connection = Conn;
 }
コード例 #2
0
ファイル: ServerConnection.cs プロジェクト: toddan/TicTacToe
 public ServerConnection(string serverip, int serverport)
 {
     ServerIp = serverip;
     ServerPort = serverport;
     instance = this;
 }