예제 #1
0
파일: Client.cs 프로젝트: gleroi/k-rabbit
        public Client(Connection conn, string secret, int gameId, int teamId)
        {
            this.Secret = secret;
            this.GameId = gameId;
            this.TeamId = teamId;

            this.Server = conn;
        }
예제 #2
0
 public ConnectionTests()
 {
     this.socket = new SocketFake();
     this.conn = new Connection("whatever", 2626, socket);
 }