mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:11:20 +00:00
18 lines
289 B
C++
18 lines
289 B
C++
#ifndef __URDE_CHUDRADARINTERFACE_HPP__
|
|
#define __URDE_CHUDRADARINTERFACE_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
class CGuiFrame;
|
|
class CStateManager;
|
|
|
|
class CHudRadarInterface
|
|
{
|
|
public:
|
|
CHudRadarInterface(CGuiFrame& selHud, CStateManager& stateMgr);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CHUDRADARINTERFACE_HPP__
|