You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
376 B
C++

#ifndef LEVELBUILDER_H
#define LEVELBUILDER_H
#include <memory>
class Controller;
class LevelBuilder
{
public:
explicit LevelBuilder();
virtual ~LevelBuilder() = 0;
virtual void init() = 0;
virtual void save() = 0;
virtual void load() = 0;
virtual const std::shared_ptr<Controller>& getStartingController() const = 0;
};
#endif // LEVELBUILDER_H