summaryrefslogtreecommitdiffstats
path: root/Level.h
blob: 2c135eff8d7f84be40408aa49bed36ece23889a6 (plain)
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_*/