EndScreen should now show when a team win

This commit is contained in:
Tleety
2016-03-12 17:03:50 +01:00
parent 8c2a665ccb
commit 548efeb11e
6 changed files with 4967 additions and 5086 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ public:
virtual void Update(double dt) override;
private:
EventRelay<EndScreenSystem, Events::Win&> m_EWin;
bool OnWin(const Events::Win&);
EventRelay<EndScreenSystem, Events::Win> m_EWin;
bool OnWin(const Events::Win& e);
};
#endif