1
0
Fork 0

Adding example code and project files.

This commit is contained in:
Henrik Hautakoski 2016-03-01 09:52:29 +01:00
parent 008cb6d33f
commit 07417491cb
5 changed files with 162 additions and 0 deletions

11
examples/text/main.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "Game.h"
int main(int argc, char **argv) {
TextExample game;
game.run();
return 0;
}