Some Entities for endscreen and some basic logic in the EndScreenSystem

This commit is contained in:
Tleety
2016-03-12 15:45:07 +01:00
parent 4334ea067e
commit 8c2a665ccb
10 changed files with 154 additions and 32 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "Systems/EndScreenSystem.h"
EndScreenSystem::EndScreenSystem(SystemParams params)
: System(params)
{
EVENT_SUBSCRIBE_MEMBER(m_EWin, &EndScreenSystem::OnWin);
}
void EndScreenSystem::Update(double dt)
{
}
bool EndScreenSystem::OnWin(const Events::Win&)
{
}
-12
View File
@@ -1,12 +0,0 @@
#include "Systems/WinScreenSystem.h"
#include "Rendering/ESetCamera.h"
#include "Core/ELockMouse.h"
WinScreenSystem::WinScreenSystem(SystemParams params)
: System(params)
{
}
void WinScreenSystem::Update(double dt)
{
}