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

22 lines
No EOL
306 B
C++

#include <string>
#include "GameLevel.h"
#include "Level1.cpp"
#include "Level2.cpp"
#include "Level3.cpp"
class BrickBreaker{
GameLevel *level;
int currentLevel;
string gameState;
public:
BrickBreaker();
void nextLevel();
string getGameState();
GameLevel* getLevel();
};