This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/Level.h

12 lines
138 B
C
Raw Normal View History

#ifndef LEVEL_H_
#define LEVEL_H_
#include "Room.h"
#include <vector>
class Level : public std::vector<Room> {
};
#endif /*LEVEL_H_*/