StartSystem skeleton and some changes to the StartMenu

This commit is contained in:
Tleety
2016-03-09 15:10:54 +01:00
parent 500ebfa08c
commit a76a04260f
4 changed files with 83 additions and 58 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef StartSystem_h__
#define StartSystem_h__
#include "Core/System.h"
#include "Core/ResourceManager.h"
#include "Core/Event.h"
#include "Core/EventBroker.h"
class StartSystem : public ImpureSystem
{
public:
StartSystem(SystemParams params);
virtual void Update(double dt) override;
private:
};
#endif