dotfiles/.config/Code/User/History/1114135d/0CpN.h
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

15 lines
No EOL
201 B
C++

#include "Ball.h"
#include "Paddle.h"
#include "Brick.h"
class GameLevel{
int score;
Ball ball;
Paddle paddle1;
Brick ***bricks;
public:
GameLevel(Ball ball, Paddle paddle1);
};