Refactor body-related classes and add new interoceptor functionality

This commit is contained in:
2024-11-22 13:11:33 +11:00
parent 30da26f0e4
commit f12f0c1231
11 changed files with 350 additions and 20 deletions
+6 -5
View File
@@ -9,16 +9,17 @@ class AttentionGrabber
{
public:
AttentionGrabber(AttentionTrigger cause, Chronomenon chron)
: isNull(false)
{}
: isNull(false)
{
}
void setNull(void) { isNull = true; }
int operator!(void) { return isNull; }
public:
AttentionTrigger cause;
Chronomenon chron;
bool isNull;
AttentionTrigger cause;
Chronomenon chron;
bool isNull;
};
#endif