1 2 3 4 5 6 7 8 9 10 11
#ifndef LEVEL_H_ #define LEVEL_H_ #include "Room.h" #include <vector> class Level : public std::vector<Room> { }; #endif /*LEVEL_H_*/