Files
salmanoff/hcore/include/simulator/simulator.h
T
hayodea 6beda55971 Add Director, director::CommandList, hk::Goal and fixups
* Simulator and Director are no longer singletons.
2025-01-03 21:22:03 -04:00

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