mirror of https://github.com/AxioDL/metaforce.git
18 lines
283 B
C++
18 lines
283 B
C++
|
#ifndef __URDE_CHUDHELMETINTERFACE_HPP__
|
||
|
#define __URDE_CHUDHELMETINTERFACE_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CGuiFrame;
|
||
|
|
||
|
class CHudHelmetInterface
|
||
|
{
|
||
|
public:
|
||
|
CHudHelmetInterface(CGuiFrame& helmetFrame);
|
||
|
void UpdateHelmetAlpha();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CHUDHELMETINTERFACE_HPP__
|