Merge remote-tracking branch 'origin/master' into HUD-Timers

# Conflicts:
#	resources/Schema/Entities/Player.xml
This commit is contained in:
Tleety
2016-03-02 22:49:26 +01:00
9 changed files with 154 additions and 31 deletions
@@ -0,0 +1,19 @@
#ifndef BoostIconsHUDSystem_h__
#define BoostIconsHUDSystem_h__
#include "../../Engine/Core/System.h"
#include "../../Engine/GLM.h"
class BoostIconsHUDSystem : public PureSystem
{
public:
BoostIconsHUDSystem(SystemParams params)
: System(params)
, PureSystem("BoostIconsHUD")
{ }
virtual void UpdateComponent(EntityWrapper& entity, ComponentWrapper& capturePoint, double dt) override;
};
#endif