mirror of https://github.com/AxioDL/metaforce.git
18 lines
230 B
C++
18 lines
230 B
C++
|
#ifndef __URDE_CMORPHBALL_HPP__
|
||
|
#define __URDE_CMORPHBALL_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CPlayer;
|
||
|
|
||
|
class CMorphBall
|
||
|
{
|
||
|
CPlayer& x0_player;
|
||
|
public:
|
||
|
CMorphBall(CPlayer& player, float);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CMORPHBALL_HPP__
|