AmmunitionHUD now working

This commit is contained in:
viktorljung
2016-02-11 23:38:25 +01:00
parent 851418b1de
commit c1860ae383
10 changed files with 263 additions and 25 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef PlayerHUD_h__
#define PlayerHUD_h__
#include "../../Engine/Core/System.h"
#include "../../Engine/GLM.h"
class HealthHUDSystem : public ImpureSystem
{
public:
HealthHUDSystem(SystemParams params)
: System(params)
{ }
virtual void Update(double dt) override;
};
#endif