6beda55971
* Simulator and Director are no longer singletons.
20 lines
233 B
C++
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
|