BoostIcons should now track correctly

This commit is contained in:
Tleety
2016-03-02 18:13:09 +01:00
parent 8b66d29adc
commit 7af17049e9
2 changed files with 42 additions and 4 deletions
+4 -2
View File
@@ -4,14 +4,16 @@
#include "../../Engine/Core/System.h"
#include "../../Engine/GLM.h"
class BoostIconsHUDSystem : public ImpureSystem
class BoostIconsHUDSystem : public PureSystem
{
public:
BoostIconsHUDSystem(SystemParams params)
: System(params)
, PureSystem("BoostIconsHUD")
{ }
virtual void Update(double dt) override;
virtual void UpdateComponent(EntityWrapper& entity, ComponentWrapper& capturePoint, double dt) override;
};
#endif