Director: now has a goal. Goal inherits from Scene

This commit is contained in:
2025-01-04 11:36:50 -04:00
parent c3461a73bb
commit 6ae037c7e7
4 changed files with 7 additions and 7 deletions
+3
View File
@@ -2,6 +2,7 @@
#define DIRECTOR_H
#include <config.h>
#include <goal.h>
namespace hk {
namespace director {
@@ -10,6 +11,8 @@ class Director {
public:
Director() = default;
~Director() = default;
Goal purpose;
};
} // namespace director