dotfiles/.config/Code/User/History/a5c4c11/vUrq.cpp

16 lines
250 B
C++
Raw Normal View History

2024-06-16 18:53:25 +05:00
#include "GameLevel.h"
class Level1 : public GameLevel{
Level1(Paddle paddle, Ball ball) : GameLevel(paddle, ball){
bricks = new Brick**[15];
for(int i=0;i<15;i++){
bricks[i] = new Brick*[15];
}
}
};