diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:31:41 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:31:41 +0100 |
commit | bc8f9c684cddbae8f185687b0f716f70d517858e (patch) | |
tree | d4243db79b09580595daa151363f85b3003854a7 /src | |
parent | 628b5d488e9f48db7926ce6b106345cd88157ce7 (diff) |
Fixed includes in example folder
Diffstat (limited to 'src')
-rw-r--r-- | src/example/ecs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/example/ecs.cpp b/src/example/ecs.cpp index a8df7e7..0c64373 100644 --- a/src/example/ecs.cpp +++ b/src/example/ecs.cpp @@ -1,9 +1,9 @@ #include <iostream> -#include "../crepe/ComponentManager.h" -#include "../crepe/api/GameObject.h" -#include "../crepe/api/Metadata.h" -#include "../crepe/api/Transform.h" +#include <crepe/ComponentManager.h> +#include <crepe/api/GameObject.h> +#include <crepe/api/Metadata.h> +#include <crepe/api/Transform.h> using namespace crepe; using namespace std; |