aboutsummaryrefslogtreecommitdiffstats
path: root/tests/engine/test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-02-01 14:04:55 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-02-01 14:04:55 +0000
commit400e8188a312abc7e5a0c7378dbd64fb8e0705e0 (patch)
treec8036f659b5d09e0ec297b8354f35311527ebddc /tests/engine/test.cpp
parent18e7d9487e298498eb5233ee17e50dfbd6b6e70f (diff)
parent6c4772685909f1f47aa902532d955c77b8e8271d (diff)
downloadYAGE-400e8188a312abc7e5a0c7378dbd64fb8e0705e0.tar.gz
YAGE-400e8188a312abc7e5a0c7378dbd64fb8e0705e0.zip
Merge branch 'develop'
Diffstat (limited to 'tests/engine/test.cpp')
-rw-r--r--tests/engine/test.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/engine/test.cpp b/tests/engine/test.cpp
index 57680b99..6026e40a 100644
--- a/tests/engine/test.cpp
+++ b/tests/engine/test.cpp
@@ -5,12 +5,15 @@
int main()
{
yage::Space space;
- auto entity = space.createEntity();
+ 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;
}