2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 02:27:42 +00:00

Lots of HUD-related implementations

This commit is contained in:
Jack Andersen
2017-04-01 17:03:37 -10:00
parent 1731cae418
commit b3c94f1d2b
64 changed files with 2066 additions and 106 deletions

View File

@@ -0,0 +1,22 @@
#ifndef __URDE_CHUDTHREATINTERFACE_HPP__
#define __URDE_CHUDTHREATINTERFACE_HPP__
namespace urde
{
class CGuiFrame;
class IHudThreatInterface
{
public:
virtual ~IHudThreatInterface() = default;
};
class CHudThreatInterfaceCombat : public IHudThreatInterface
{
public:
CHudThreatInterfaceCombat(CGuiFrame& selHud, float);
};
}
#endif // __URDE_CHUDTHREATINTERFACE_HPP__