2024-11-21 02:31:37 +11:00
|
|
|
#ifndef _GOAL_H
|
|
|
|
|
#define _GOAL_H
|
|
|
|
|
|
2025-01-03 21:22:03 -04:00
|
|
|
#include <simulator/scene.h>
|
2024-11-21 02:31:37 +11:00
|
|
|
|
2025-01-03 21:22:03 -04:00
|
|
|
namespace hk {
|
|
|
|
|
|
|
|
|
|
class Goal {
|
|
|
|
|
public:
|
|
|
|
|
Goal(const simulator::Scene& scene) : scene(scene) {}
|
|
|
|
|
~Goal() = default;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
simulator::Scene scene;
|
2024-11-21 02:31:37 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|