18 lines
193 B
C++
18 lines
193 B
C++
![]() |
#ifndef LEVEL3_H
|
||
|
#define LEVEL3_H
|
||
|
|
||
|
#include "GameLevel.h"
|
||
|
|
||
|
class Level3 : public GameLevel{
|
||
|
public:
|
||
|
Level3(){
|
||
|
pattern();
|
||
|
}
|
||
|
void pattern(){
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
#endif
|