Files
salmanoff/core/include/mind.h
T

22 lines
236 B
C++
Raw Normal View History

2024-09-04 14:08:50 +10:00
#ifndef _MIND_H
#define _MIND_H
#include <thought.h>
2024-09-05 18:20:33 +10:00
#include <subconscious.h>
2024-09-04 14:08:50 +10:00
class Mind
{
public:
2024-09-05 18:20:33 +10:00
void wander(void)
2024-09-04 14:08:50 +10:00
{
2024-09-05 18:20:33 +10:00
Thought idleThought(subconscious);
2024-09-04 14:08:50 +10:00
2024-09-05 18:20:33 +10:00
idleThought.walk();
2024-09-04 14:08:50 +10:00
}
public:
Subconscious subconscious;
};
#endif