dotfiles/.config/Code/User/History/34a348d4/Shyf.h

22 lines
306 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;
string gameState;
public:
BrickBreaker();
void nextLevel();
string getGameState();
GameLevel* getLevel();
};