System skeleton

This commit is contained in:
Tleety
2016-03-12 14:44:03 +01:00
parent 8e266984f4
commit 4334ea067e
2 changed files with 29 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef WinScreenSystem_h__
#define WinScreenSystem_h__
#include "Core/System.h"
#include "Input/EInputCommand.h"
class WinScreenSystem : public ImpureSystem
{
public:
WinScreenSystem(SystemParams params);
virtual void Update(double dt) override;
private:
};
#endif
+12
View File
@@ -0,0 +1,12 @@
#include "Systems/WinScreenSystem.h"
#include "Rendering/ESetCamera.h"
#include "Core/ELockMouse.h"
WinScreenSystem::WinScreenSystem(SystemParams params)
: System(params)
{
}
void WinScreenSystem::Update(double dt)
{
}