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

16 lines
292 B
C++
Raw Normal View History

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