dotfiles/.config/Code/User/History/a5c4c11/ErIQ.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

16 lines
No EOL
256 B
C++

#include "GameLevel.h"
#include "util.h"
class Level1 : public GameLevel{
public:
Level1() : GameLevel(){
for(int i=0;i<25;i++){
for(int j=0;j<15;j++){
bricks[i][j] = new Brick();
}
}
}
};