dotfiles/.config/Code/User/History/34a348d4/2z3Q.h

26 lines
405 B
C
Raw Normal View History

2024-06-16 18:53:25 +05:00
#include <string>
#include "GameLevel.h"
#include "Level1.cpp"
#include "Level2.cpp"
#include "Level3.cpp"
class BrickBreaker{
GameLevel *level;
int currentLevel;
std::string gameState;
public:
BrickBreaker();
void nextLevel();
int getCurrentLevel();
std::string& getGameState();
GameLevel* getLevel();
BrickBreaker& setGameState(std::string gameState);
};