dotfiles/.config/Code/User/History/1114135d/hGKm.h

19 lines
284 B
C
Raw Normal View History

2024-06-16 18:53:25 +05:00
#include "Ball.h"
#include "Paddle.h"
#include "Brick.h"
class GameLevel{
int score;
int lives;
protected:
Ball ball;
Paddle paddle;
Brick ***bricks;
public:
GameLevel(Paddle paddle, Ball ball);
void draw();
void checkBrickCollision(Ball& ball);
};