This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Indoor/floorplan/Stairs.h
2016-01-21 20:01:20 +01:00

12 lines
140 B
C++

#ifndef STAIRS_H
#define STAIRS_H
#include <vector>
#include "Stair.h"
class Stairs : public std::vector<Stair> {
};
#endif // STAIRS_H