6beda55971
* Simulator and Director are no longer singletons.
23 lines
330 B
C++
23 lines
330 B
C++
#ifndef SIMULATOR_H
|
|
#define SIMULATOR_H
|
|
|
|
#include <simulator/scene.h>
|
|
|
|
namespace simulator {
|
|
|
|
class Simulator {
|
|
public:
|
|
Simulator() = default;
|
|
~Simulator() = default;
|
|
|
|
void initialize();
|
|
void loadScene(Scene::Id sceneId, Scene &scene);
|
|
|
|
private:
|
|
Scene::Id sceneId;
|
|
Scene scene;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SIMULATOR_H
|