dotfiles/.config/Code/User/History/-322e7254/3Acd.h
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

18 lines
No EOL
215 B
C++

class Brick{
const int width = 65;
const int height = 18;
int strength;
float *color;
public:
Brick(float *color);
void draw(int row, int col);
void checkCollision(Ball& ball);
};