Components for CapturePoint arrow HUD element and a system skeleton

This commit is contained in:
Tleety
2016-03-01 16:19:59 +01:00
parent 7ba5e01560
commit b0a66f9e83
9 changed files with 59 additions and 29 deletions
@@ -0,0 +1,20 @@
#ifndef CapturePointArrowHUDSystem_h__
#define CapturePointArrowHUDSystem_h__
#include <GLFW/glfw3.h>
#include <glm/common.hpp>
#include "Common.h"
#include "Core/System.h"
class CapturePointArrowHUDSystem : public ImpureSystem
{
public:
CapturePointArrowHUDSystem(SystemParams params);
virtual void Update(double dt) override;
private:
};
#endif