12 lines
140 B
C++
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
|