Files
salmanoff/core/include/mind.h
T
2024-09-05 18:20:33 +10:00

22 lines
236 B
C++

#ifndef _MIND_H
#define _MIND_H
#include <thought.h>
#include <subconscious.h>
class Mind
{
public:
void wander(void)
{
Thought idleThought(subconscious);
idleThought.walk();
}
public:
Subconscious subconscious;
};
#endif