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

13 lines
169 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];
}
};