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