/// <summary> /// Constructor /// </summary> /// <param name="joinGame"></param> /// <param name="sendMessage"></param> /// <param name="selectUser"></param> /// <param name="selectKickVotes"></param> public GameController(AS.Game.Base.IJoin joinGame, AS.Hubs.Base.ISendMessage sendMessage, AS.User.Base.ISelect selectUser, AS.GamePlayerKickVote.Base.ISelect selectKickVotes, AS.GameRound.Base.ISelect selectGameRounds) { this._joinGame = joinGame; this._sendMessage = sendMessage; this._selectUser = selectUser; this._selectKickVotes = selectKickVotes; this._selectGameRounds = selectGameRounds; }