aboutsummaryrefslogtreecommitdiffstats
path: root/tests/engine/test.cpp
blob: 5095a974ad4b7b5f68cce07a082a3cc0cfccf8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <yage/entity/space.h>

#include <yage/yage.h>

int main()
{
    yage::Space space;
    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;
}