/// <summary> /// Initializes a new instance of the <see cref="LetterReadRequestHandler"/> class. /// </summary> public LetterReadRequestHandler() { this.readAction = new LetterReadRequestAction(); }
/// <summary> /// Initializes a new instance of the <see cref="LetterReadRequestHandler"/> class. /// </summary> /// <param name="gameContext">The game context.</param> public LetterReadRequestHandler(IGameContext gameContext) { this.readAction = new LetterReadRequestAction(gameContext); }