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

#include <yage/yage.h>

int main()
{
    yage::Space space;
    auto entity = space.createEntity();
    auto entity2 = space.createEntity();
    auto entity3 = space.createEntity();

    yLogInfo << "Entity 1: " << entity;
    yLogInfo << "Entity 3: " << entity3;
    yLogInfo << "Entity 2: " << entity2;
    return 0;
}