13 lines
108 B
C++
13 lines
108 B
C++
|
|
#ifndef _THOUGHT_H
|
||
|
|
#define _THOUGHT_H
|
||
|
|
|
||
|
|
#include <scene.h>
|
||
|
|
|
||
|
|
class Thought
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Scene scene;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|