From 93f5ef70fd3395b843adf59b5be4c34a26a78a4f Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 12 Mar 2015 17:29:53 -0400 Subject: Added death sound effect --- src/game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index cea154a..ca6c00b 100644 --- a/src/game.h +++ b/src/game.h @@ -33,7 +33,6 @@ class Game { void loadGame(const Map& curMap); void schedule(int frames, std::function&& callback); - bool shouldQuit = false; private: friend void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods); @@ -45,6 +44,7 @@ class Game { Map m2{"../maps/second.txt"}; Savefile save; std::list>> scheduled; + bool shouldQuit = false; }; #endif -- cgit 1.4.1