test
This commit is contained in:
parent
37776af5db
commit
ab03d5f10c
4045 changed files with 286212 additions and 3 deletions
20
.config/Code/User/History/a5c4c11/rmyC.cpp
Normal file
20
.config/Code/User/History/a5c4c11/rmyC.cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue