Files

20 lines
253 B
C++
Raw Permalink Normal View History

#ifndef _GOAL_H
#define _GOAL_H
2025-09-02 17:01:47 -04:00
#include <concept.h>
2025-10-05 21:45:45 -04:00
#include <mentalEntity.h>
2025-07-22 06:48:04 -04:00
namespace smo {
2025-01-04 13:21:24 -04:00
class Goal
2025-10-05 21:45:45 -04:00
: public cologex::Concept, public MentalEntity
2025-10-05 21:15:55 -04:00
{
public:
Goal() = default;
~Goal() = default;
};
2025-07-22 06:48:04 -04:00
} // namespace smo
2025-10-05 21:15:55 -04:00
#endif // _GOAL_H