#ifndef LEVEL3_H #define LEVEL3_H #include "GameLevel.h" class Level3 : public GameLevel{ public: Level3(){ pattern(); } void pattern(){ } }; #endif