System skeleton
This commit is contained in:
@@ -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
|
||||||
@@ -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)
|
||||||
|
{
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user