aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simplegame/main.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-02-13 20:06:32 +0000
committerGitHub <noreply@github.com>2018-02-13 20:06:32 +0000
commitd273045983524f1ccd51859f28869a3ad6febf32 (patch)
treee8b523f39bc85f6f32d1881b3843d21157d526f2 /examples/simplegame/main.cpp
parent2fe3434682aae38bb0ab414135c2311110a6db90 (diff)
parent2ff28e1127a82610d9402c90f7a2d1c1c7a19b6f (diff)
downloadYAGE-d273045983524f1ccd51859f28869a3ad6febf32.tar.gz
YAGE-d273045983524f1ccd51859f28869a3ad6febf32.zip
Merge pull request #16 from ymherklotz/entity
[entity] Fixing builds too
Diffstat (limited to 'examples/simplegame/main.cpp')
-rw-r--r--examples/simplegame/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/simplegame/main.cpp b/examples/simplegame/main.cpp
index ed6b78f3..bea3bc8d 100644
--- a/examples/simplegame/main.cpp
+++ b/examples/simplegame/main.cpp
@@ -18,7 +18,7 @@ using namespace yage;
int main()
{
-
+ yage::init();
Logger logger;
srand(time(nullptr));
Window window;
@@ -109,4 +109,5 @@ int main()
}
i = (i + 1) % 30;
}
+ yage::quit();
}