Added EditorSystem

This commit is contained in:
2015-12-13 13:37:32 +01:00
parent 8a6030bf57
commit e5084e13ec
5 changed files with 26 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "../Core/System.h"
class EditorSystem : public ImpureSystem
{
public:
EditorSystem(EventBroker* eventBroker)
: ImpureSystem(eventBroker)
{ }
virtual void Update(World* world, double dt) override;
};