16 lines
236 B
C++
16 lines
236 B
C++
![]() |
#ifndef LEVEL3_H
|
||
|
#define LEVEL3_H
|
||
|
|
||
|
#include "GameLevel.h"
|
||
|
|
||
|
class Level3 : public GameLevel{
|
||
|
public:
|
||
|
Level3(){
|
||
|
for(int i=0;i<25;i++){
|
||
|
for(int j=0;j<15;j++){
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
#endif
|