mirror of https://github.com/AxioDL/metaforce.git
21 lines
242 B
C++
21 lines
242 B
C++
|
#ifndef __URDE_CPLAYERVISOR_HPP__
|
||
|
#define __URDE_CPLAYERVISOR_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CStateManager;
|
||
|
|
||
|
namespace MP1
|
||
|
{
|
||
|
|
||
|
class CPlayerVisor
|
||
|
{
|
||
|
public:
|
||
|
CPlayerVisor(CStateManager& stateMgr);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CPLAYERVISOR_HPP__
|