aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shooter/main.cpp')
-rw-r--r--examples/shooter/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/shooter/main.cpp b/examples/shooter/main.cpp
index e38bf53b..5d80c350 100644
--- a/examples/shooter/main.cpp
+++ b/examples/shooter/main.cpp
@@ -11,6 +11,7 @@ using std::cout;
int main(int argc, char **argv)
{
+ yage::init();
yage::Window window;
window.create("Shooter example", 800, 600);
@@ -166,4 +167,5 @@ int main(int argc, char **argv)
window.swapBuffer();
}
+ yage::quit();
}