Update for Autogoalation

This commit is contained in:
2025-12-25 19:21:47 -04:00
parent d39bc4b475
commit 2dc6b729e0
+12 -2
View File
@@ -1,17 +1,27 @@
#ifndef _GOAL_H
#define _GOAL_H
#include <concept.h>
#include <mentalEntity.h>
#include <user/cologex.h>
namespace smo {
class Goal
: public cologex::Concept, public MentalEntity
: public MentalEntity
{
public:
Goal() = default;
~Goal() = default;
public:
};
class AutoGoal
: public Goal
{
public:
AutoGoal() = default;
~AutoGoal() = default;
};
} // namespace smo