public ResearchAndDevelopment(Game game, Deck deck, Shuffling shuffling) { this.game = game; this.shuffling = shuffling; Ice = new IceColumn(game); foreach (var card in deck.cards) { card.MoveTo(Zone); } }
public Archives(Game game) { this.game = game; Ice = new IceColumn(game); }
public Headquarters(Game game, Random random) { this.random = random; this.game = game; Ice = new IceColumn(game); }
public Remote(Game game) { this.game = game; Ice = new IceColumn(game); }