Added new view function: previous round cards played.
How I did it: added a HBox for the middle "middlePane" that will hold the
boardPane and a new VBox "playedCards" to hold the later views for previous cards.
Check updatePreviousRound for how I modify playedCards. Adding 3 children
Title: playedCardsLabel
Text Players: namesInOrder
The Cards: a new HBox where I add all the ImageView
Changes from the old structure:
middlePane = new HBox(boardPane, playedCards)
I also set a minWidth for boardPane to visualize better,
else it's literally next to the board and it's dirty
Added new view function: previous round cards played. How I did it: added a HBox for the middle "middlePane" that will hold the boardPane and a new VBox "playedCards" to hold the later views for previous cards.
Check updatePreviousRound for how I modify playedCards. Adding 3 children Title: playedCardsLabel Text Players: namesInOrder The Cards: a new HBox where I add all the ImageView
Changes from the old structure: middlePane = new HBox(boardPane, playedCards) I also set a minWidth for boardPane to visualize better, else it's literally next to the board and it's dirty