metaforce/Runtime/GuiSys/CHudHelmetInterface.hpp

21 lines
427 B
C++
Raw Normal View History

2017-04-02 03:03:37 +00:00
#ifndef __URDE_CHUDHELMETINTERFACE_HPP__
#define __URDE_CHUDHELMETINTERFACE_HPP__
namespace urde
{
class CGuiFrame;
class CHudHelmetInterface
{
public:
CHudHelmetInterface(CGuiFrame& helmetFrame);
2017-04-03 01:39:23 +00:00
void Update(float dt);
void SetIsVisibleDebug(bool helmet, bool glow);
void UpdateCameraDebugSettings(float fov, float y, float z);
2017-04-02 03:03:37 +00:00
void UpdateHelmetAlpha();
};
}
#endif // __URDE_CHUDHELMETINTERFACE_HPP__