2025-01-03 21:22:03 -04:00
|
|
|
#ifndef DIRECTOR_H
|
|
|
|
|
#define DIRECTOR_H
|
|
|
|
|
|
2025-01-04 07:33:15 -04:00
|
|
|
#include <config.h>
|
2025-01-04 11:36:50 -04:00
|
|
|
#include <goal.h>
|
2025-01-04 07:33:15 -04:00
|
|
|
|
2025-01-04 11:32:37 -04:00
|
|
|
namespace hk {
|
2025-01-03 21:22:03 -04:00
|
|
|
namespace director {
|
|
|
|
|
|
|
|
|
|
class Director {
|
|
|
|
|
public:
|
|
|
|
|
Director() = default;
|
|
|
|
|
~Director() = default;
|
2025-01-04 11:36:50 -04:00
|
|
|
|
|
|
|
|
Goal purpose;
|
2025-01-03 21:22:03 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace director
|
2025-01-04 11:32:37 -04:00
|
|
|
} // namespace hk
|
2025-01-03 21:22:03 -04:00
|
|
|
|
|
|
|
|
#endif // DIRECTOR_H
|