Space Walk board game
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

25 строки
325 B

#ifndef MAINMENU_H
#define MAINMENU_H
#include <memory>
#include "gamestate.h"
class Player;
class Window;
class MainMenu : public GameState
{
public:
void initialize();
void update();
void render();
void destroy();
private:
bool titleScreen;
Window *window;
Player **player;
};
#endif // MAINMENU_H