setup config to be one file
[physics.git] / src / GameStates / Paused.cpp
index 31cbb7a..20ef061 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #include "Paused.h"
-
+#include "../config/config.h"
 
 /// ***** Constructors/Destructors *****
 
@@ -43,3 +43,12 @@ void Paused::draw(bool on_top) const
 {
     // TODO
 }
+
+bool Paused::pushMe() const
+{
+    return cfg::pause();
+}
+bool Paused::popMe() const
+{
+    return cfg::unPause();
+}