Esempio n. 1
0
 public ShootInteraction(Player player, Board board, Whumpus whumpus, IShootPresenter shootPresenter) : base(player, board)
 {
     _whumpus   = whumpus ?? throw new ArgumentNullException(nameof(whumpus));
     _presenter = shootPresenter ?? throw new ArgumentNullException(nameof(shootPresenter));
 }
 public WhumpusTest()
 {
     _whumpus = new Whumpus(1);
 }