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

using namespace yage;

int main()
{
    Window window;

    window.create("Simple Game", 800, 640);

    while(!window.shouldClose()) {
        SpriteBatch sp;
        sp.begin();
        window.pollEvents();
    }
}