Implemented basic conceptual structure

This commit is contained in:
2024-09-04 14:08:50 +10:00
parent 1211140f82
commit 581e6d6277
7 changed files with 100 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef _MIND_H
#define _MIND_H
#include <thought.h>
class Mind
{
public:
void Mind::wander(void)
{
for (;;)
{
Thought idleThought(subconscious);
idleThought.walk(mind);
}
}
public:
Subconscious subconscious;
};
#endif