mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 09:47:43 +00:00
Lots of HUD-related implementations
This commit is contained in:
28
Runtime/GuiSys/CHudFreeLookInterface.hpp
Normal file
28
Runtime/GuiSys/CHudFreeLookInterface.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef __URDE_CHUDFREELOOKINTERFACE_HPP__
|
||||
#define __URDE_CHUDFREELOOKINTERFACE_HPP__
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CGuiFrame;
|
||||
|
||||
class IFreeLookInterface
|
||||
{
|
||||
public:
|
||||
virtual ~IFreeLookInterface() = default;
|
||||
};
|
||||
|
||||
class CHudFreeLookInterfaceCombat : public IFreeLookInterface
|
||||
{
|
||||
public:
|
||||
CHudFreeLookInterfaceCombat(CGuiFrame& selHud, bool, bool, bool, bool grapplePoint);
|
||||
};
|
||||
|
||||
class CHudFreeLookInterfaceXRay : public IFreeLookInterface
|
||||
{
|
||||
public:
|
||||
CHudFreeLookInterfaceXRay(CGuiFrame& selHud, bool, bool, bool grapplePoint);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CHUDFREELOOKINTERFACE_HPP__
|
||||
Reference in New Issue
Block a user