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

20 lines
284 B
C++
Raw Normal View History

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