Everything builds now

This commit is contained in:
2024-09-05 18:20:33 +10:00
parent 244b86cb72
commit 0ccb7e5542
5 changed files with 33 additions and 6 deletions
+4 -6
View File
@@ -2,18 +2,16 @@
#define _MIND_H
#include <thought.h>
#include <subconscious.h>
class Mind
{
public:
void Mind::wander(void)
void wander(void)
{
for (;;)
{
Thought idleThought(subconscious);
Thought idleThought(subconscious);
idleThought.walk(mind);
}
idleThought.walk();
}
public: