Everything builds now
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user