My Project
UML Lab
Loading...
Searching...
No Matches
menu.h
Go to the documentation of this file.
1#ifndef MENU_H
2#define MENU_H
3
4#include <SFML/Graphics.hpp>
5#include "player.h"
6
10class Menu {
11public:
16 Menu(sf::RenderWindow& window);
17
23
24private:
25 sf::RenderWindow& window;
26};
27
28#endif // MENU_H
Class representing the game menu for player color selection.
Definition menu.h:10
Player chooseColor()
Displays a menu for the player to choose their color.
Definition menu.cpp:25
Menu(sf::RenderWindow &window)
Constructs a Menu object.
Definition menu.cpp:16
sf::RenderWindow & window
Definition menu.h:25
Class representing a player in the game.
Definition player.h:9