Files
salmanoff/core/include/thought.h
T

29 lines
313 B
C++
Raw Normal View History

2024-09-04 14:08:50 +10:00
#ifndef _THOUGHT_H
#define _THOUGHT_H
2024-09-05 18:20:33 +10:00
#include <iostream>
2024-09-04 14:08:50 +10:00
#include <scene.h>
2024-09-05 18:20:33 +10:00
#include <thoughtContentSource.h>
2024-09-04 14:08:50 +10:00
class Thought
{
2024-09-05 18:20:33 +10:00
public:
Thought(ThoughtContentSource csource)
{}
void walk(void)
{
for (;;)
{
step();
}
};
void step(void) { std::cout <<"Step\n"; }
2024-09-04 14:08:50 +10:00
public:
Scene scene;
};
#endif