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

15 lines
209 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;
Ball ball;
Paddle paddle;
protected:
Brick ***bricks;
public:
GameLevel(Paddle paddle, Ball ball);
};