20 lines
284 B
C++
20 lines
284 B
C++
![]() |
#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
|