dotfiles/.config/Code/User/History/34a348d4/64cj.h
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

24 lines
No EOL
328 B
C++

#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();
};