2025-01-03 20:02:24 -04:00
|
|
|
#ifndef SIMULATOR_H
|
|
|
|
|
#define SIMULATOR_H
|
|
|
|
|
|
2025-01-04 07:33:15 -04:00
|
|
|
#include <config.h>
|
2025-01-03 21:00:01 -04:00
|
|
|
#include <simulator/scene.h>
|
2025-01-03 20:02:24 -04:00
|
|
|
|
2025-01-04 11:32:37 -04:00
|
|
|
namespace hk {
|
2025-01-03 20:02:24 -04:00
|
|
|
namespace simulator {
|
|
|
|
|
|
|
|
|
|
class Simulator {
|
|
|
|
|
public:
|
2025-01-03 21:22:03 -04:00
|
|
|
Simulator() = default;
|
|
|
|
|
~Simulator() = default;
|
2025-01-03 20:02:24 -04:00
|
|
|
|
|
|
|
|
void initialize();
|
2025-01-03 21:22:03 -04:00
|
|
|
void loadScene(Scene::Id sceneId, Scene &scene);
|
2025-01-03 20:02:24 -04:00
|
|
|
|
|
|
|
|
private:
|
2025-01-03 21:22:03 -04:00
|
|
|
Scene::Id sceneId;
|
|
|
|
|
Scene scene;
|
2025-01-03 20:02:24 -04:00
|
|
|
};
|
|
|
|
|
|
2025-01-04 11:32:37 -04:00
|
|
|
} // namespace simulator
|
|
|
|
|
} // namespace hk
|
2025-01-03 20:02:24 -04:00
|
|
|
|
|
|
|
|
#endif // SIMULATOR_H
|