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 {
|
|
|
|
|
|
2025-01-04 13:21:24 -04:00
|
|
|
class Goal
|
|
|
|
|
: public simulator::Scene {
|
2025-01-03 21:22:03 -04:00
|
|
|
public:
|
2025-01-04 11:36:50 -04:00
|
|
|
Goal() = default;
|
2025-01-03 21:22:03 -04:00
|
|
|
~Goal() = default;
|
2024-11-21 02:31:37 +11:00
|
|
|
};
|
|
|
|
|
|
2025-01-04 11:32:37 -04:00
|
|
|
} // namespace hk
|
2024-11-21 02:31:37 +11:00
|
|
|
|
|
|
|
|
#endif
|