Updated 'Game' class.

Updated the 'Game' class by setting the 'die' attribute correctly inside the constructor.
This commit is contained in:
Daniel Grigencha
2024-12-02 19:45:11 +01:00
parent 0d9a922f55
commit 44f893ccef

View File

@@ -65,6 +65,7 @@ public Game() {
drawPile.add(BonusCard.SHIELD);
}
board = new Board();
die = new Die();
}
/**