aboutsummaryrefslogtreecommitdiffstats
path: root/tests/engine/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/engine/test.cpp')
-rw-r--r--tests/engine/test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/engine/test.cpp b/tests/engine/test.cpp
index 6026e40a..5095a974 100644
--- a/tests/engine/test.cpp
+++ b/tests/engine/test.cpp
@@ -1,4 +1,4 @@
-#include <yage/engine/space.h>
+#include <yage/entity/space.h>
#include <yage/yage.h>
@@ -8,12 +8,12 @@ int main()
auto entity = space.createEntity();
auto entity2 = space.createEntity();
auto entity3 = space.createEntity();
-
auto entity4 = space.createEntity();
yLogInfo << "Entity 1: " << entity;
yLogInfo << "Entity 3: " << entity3;
yLogInfo << "Entity 2: " << entity2;
yLogInfo << "Entity 4: " << entity4;
+
return 0;
}