Rename hcore=>smocore
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#ifndef SIMULATOR_H
|
||||
#define SIMULATOR_H
|
||||
|
||||
#include <config.h>
|
||||
#include <simulator/scene.h>
|
||||
|
||||
namespace hk {
|
||||
namespace simulator {
|
||||
|
||||
class Simulator {
|
||||
public:
|
||||
Simulator() = default;
|
||||
~Simulator() = default;
|
||||
|
||||
void initialize();
|
||||
void loadScene(Scene::Id sceneId, Scene &scene);
|
||||
|
||||
private:
|
||||
Scene::Id sceneId;
|
||||
Scene scene;
|
||||
};
|
||||
|
||||
} // namespace simulator
|
||||
} // namespace hk
|
||||
|
||||
#endif // SIMULATOR_H
|
||||
Reference in New Issue
Block a user