18 lines
No EOL
196 B
C++
18 lines
No EOL
196 B
C++
#include "GameLevel.h"
|
|
#include "Level1.cpp"
|
|
#include "Level2.cpp"
|
|
|
|
|
|
class BrickBreaker{
|
|
|
|
GameLevel *level;
|
|
int currentLevel;
|
|
|
|
public:
|
|
|
|
BrickBreaker();
|
|
|
|
GameLevel* getLevel();
|
|
|
|
|
|
}; |