Implemented basic conceptual structure
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user