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
+16
View File
@@ -1,10 +1,26 @@
#ifndef _THOUGHT_H
#define _THOUGHT_H
#include <iostream>
#include <scene.h>
#include <thoughtContentSource.h>
class Thought
{
public:
Thought(ThoughtContentSource csource)
{}
void walk(void)
{
for (;;)
{
step();
}
};
void step(void) { std::cout <<"Step\n"; }
public:
Scene scene;
};