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:
22
Runtime/GuiSys/CHudThreatInterface.hpp
Normal file
22
Runtime/GuiSys/CHudThreatInterface.hpp
Normal 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__
|
||||
Reference in New Issue
Block a user