20 lines
219 B
C++
20 lines
219 B
C++
![]() |
#ifndef LEVEL3_H
|
||
|
#define LEVEL3_H
|
||
|
|
||
|
#include "GameLevel.h"
|
||
|
|
||
|
class Level3 : public GameLevel{
|
||
|
public:
|
||
|
Level3(){
|
||
|
pattern(0);
|
||
|
}
|
||
|
void pattern(int i){
|
||
|
if(i<15){
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
#endif
|