Beispiel #1
0
 public Wonder(String name, bool A_side, int noOfLevels, Playcard startCard)
 {
     this.currentLevel = 0;
     this.name         = name;
     this.A_side       = A_side;
     this.noOfLevels   = noOfLevels;
     this.startCard    = startCard;
     this.levelCards   = null;
     this.stashedCards = new CardList();
 }
Beispiel #2
0
 public void addLevels(CardList levelCards)
 {
     this.levelCards = levelCards;
 }