Files
salmanoff/hcore/include/goal.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

20 lines
233 B
C++

#ifndef _GOAL_H
#define _GOAL_H
#include <simulator/scene.h>
namespace hk {
class Goal {
public:
Goal(const simulator::Scene& scene) : scene(scene) {}
~Goal() = default;
private:
simulator::Scene scene;
};
}
#endif