Files
axyz/include/Game/Systems/HealthHUDSystem.h
T
2016-02-11 23:38:25 +01:00

17 lines
298 B
C++

#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