18 lines
201 B
C++
18 lines
201 B
C++
#ifndef _GOAL_H
|
|
#define _GOAL_H
|
|
|
|
#include <simulator/scene.h>
|
|
|
|
namespace hk {
|
|
|
|
class Goal
|
|
: public simulator::Scene {
|
|
public:
|
|
Goal() = default;
|
|
~Goal() = default;
|
|
};
|
|
|
|
} // namespace hk
|
|
|
|
#endif
|