diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-06 15:20:25 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-06 15:20:25 +0100 |
commit | 6296b85846b21083e4f545b209f1d9edce2b06f9 (patch) | |
tree | ae83cf160d44541850f970cc933530474d3cb651 /src/example | |
parent | 5af0b90f11929ca99a48389ef29d8a56f39b0efd (diff) |
Moved Matadata to api folder (because it may be used by the game programmer)
Diffstat (limited to 'src/example')
-rw-r--r-- | src/example/ecs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/example/ecs.cpp b/src/example/ecs.cpp index 6f9752e..a8df7e7 100644 --- a/src/example/ecs.cpp +++ b/src/example/ecs.cpp @@ -1,8 +1,8 @@ #include <iostream> #include "../crepe/ComponentManager.h" -#include "../crepe/Metadata.h" #include "../crepe/api/GameObject.h" +#include "../crepe/api/Metadata.h" #include "../crepe/api/Transform.h" using namespace crepe; |