Files
axyz/include/Engine/Editor/EditorSystem.h
T
2015-12-14 13:57:51 +01:00

11 lines
229 B
C++

#include "../Core/System.h"
class EditorSystem : public ImpureSystem
{
public:
EditorSystem(EventBroker* eventBroker)
: ImpureSystem(eventBroker)
{ }
virtual void Update(World* world, double dt) override;
};