コード例 #1
0
 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);
     }
 }
コード例 #2
0
 public Archives(Game game)
 {
     this.game = game;
     Ice       = new IceColumn(game);
 }
コード例 #3
0
 public Headquarters(Game game, Random random)
 {
     this.random = random;
     this.game   = game;
     Ice         = new IceColumn(game);
 }
コード例 #4
0
 public Remote(Game game)
 {
     this.game = game;
     Ice       = new IceColumn(game);
 }