13 lines
132 B
C++
13 lines
132 B
C++
![]() |
#ifndef LEVEL2_H
|
||
|
#define LEVEL2_H
|
||
|
|
||
|
#include "GameLevel.h"
|
||
|
|
||
|
class Level2 : public GameLevel{
|
||
|
|
||
|
Level2(){
|
||
|
|
||
|
}
|
||
|
|
||
|
};
|
||
|
#endif
|