841441806c
* Cut out all extraneous includes.
24 lines
350 B
C++
24 lines
350 B
C++
#ifndef SIMULATOR_H
|
|
#define SIMULATOR_H
|
|
|
|
#include <config.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
|