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

17 lines
302 B
C++

#ifndef LEVEL_H_
#define LEVEL_H_
#include "LevelObject.h"
#include "SharedPtr.h"
#include "PlayerStart.h"
#include <vector>
class Level : public std::vector<SharedPtr<LevelObject> > {
public:
Level() {
push_back(SharedPtr<LevelObject>(new PlayerStart()));
}
};
#endif /*LEVEL_H_*/