Files
salmanoff/smocore/include/goal.h
T

30 lines
332 B
C++
Raw Normal View History

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