Implemented basic conceptual structure

This commit is contained in:
2024-09-04 14:08:50 +10:00
parent 1211140f82
commit 581e6d6277
7 changed files with 100 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef _THOUGHT_H
#define _THOUGHT_H
#include <scene.h>
class Thought
{
public:
Scene scene;
};
#endif