removed all ../ entries and made a basic inc path (dependencies are currently broke)
[physics.git] / src / GameStates / Paused.cpp
index 31cbb7a..f2982b1 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::paused();
+}
+bool Paused::popMe() const
+{
+    return !cfg::paused();
+}