17 lines
326 B
C++
17 lines
326 B
C++
#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 |