aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-07 09:31:41 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-07 09:31:41 +0100
commitbc8f9c684cddbae8f185687b0f716f70d517858e (patch)
treed4243db79b09580595daa151363f85b3003854a7 /src
parent628b5d488e9f48db7926ce6b106345cd88157ce7 (diff)
Fixed includes in example folder
Diffstat (limited to 'src')
-rw-r--r--src/example/ecs.cpp8
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;