dotfiles/.config/Code/User/History/34a348d4/64cj.h

24 lines
328 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"
using namespace std;
class BrickBreaker{
GameLevel *level;
int currentLevel;
string gameState;
public:
BrickBreaker();
void nextLevel();
string getGameState();
GameLevel* getLevel();
};