Fixed error so you can actually play LevelSystemAndSuch branch.

This commit is contained in:
PlatinumSkink
2015-10-15 13:48:35 +02:00
parent 927c96d863
commit b2127c6c4e
+1 -3
View File
@@ -36,12 +36,10 @@ public:
bool IsPaused() const { return m_Pause; }
void SetPause(const bool& pause) { m_Pause = pause; }
private:
bool m_Pause = false;
dd::EventRelay<KrakenSystem, dd::Events::Pause> m_EPause;
bool OnPause(const dd::Events::Pause &event);
};
}