aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simplegame/main.cpp
diff options
context:
space:
mode:
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();
}