示例#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);
 }