AmmunitionHUDSystem now really working

This commit is contained in:
viktorljung
2016-02-12 00:26:59 +01:00
parent c1860ae383
commit a36ed76a4e
4 changed files with 46 additions and 9 deletions
@@ -0,0 +1,17 @@
#ifndef AmmunitionHUDSystem_h__
#define AmmunitionHUDSystem_h__
#include "../../Engine/Core/System.h"
#include "../../Engine/GLM.h"
class AmmunitionHUDSystem : public ImpureSystem
{
public:
AmmunitionHUDSystem(SystemParams params)
: System(params)
{ }
virtual void Update(double dt) override;
};
#endif