Make Quale derive from MentalExistent.

This commit is contained in:
2025-08-03 05:03:41 -04:00
parent 6114a2648d
commit 79825e4da3
+11
View File
@@ -3,8 +3,12 @@
#include <cstdint>
#include <attentionTrigger.h>
#include <mentalExistent.h>
namespace smo {
class Quale
: public MentalExistent
{
public:
enum class Type
@@ -19,6 +23,11 @@ public:
PLEASURABLE
} type;
public:
Quale(const Type type, const int32_t intensity)
: type(type), intensity(intensity) {}
public:
int32_t intensity;
};
@@ -36,4 +45,6 @@ public:
public:
};
} // namespace smo
#endif