smarter & pointier

This commit is contained in:
2025-03-03 12:00:39 +01:00
parent 47d3d929db
commit d029589c21
6 changed files with 19 additions and 10 deletions

View File

@@ -12,10 +12,10 @@ static const int FRAMES_PER_SECOND = 60; // the number of frames per second, all
*/
class Menu {
private:
PiecesList piecesList; // the list of pieces in the game
Player playerControls; // the controls of the player
int boardWidth; // the width of the board for the next game
int boardHeight; // the height of the board for the next game
std::shared_ptr<PiecesList> piecesList; // the list of pieces in the game
Player playerControls; // the controls of the player
int boardWidth; // the width of the board for the next game
int boardHeight; // the height of the board for the next game
public:
/**