mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
* Update tool versions * Initial CMorphBall * Cleanup CMorphBall, link RMathUtils * Rematch a couple symbols * Fix _01 DolphinCGraphics .sdata size regression
23 lines
428 B
C++
23 lines
428 B
C++
#ifndef _CMORPHBALLSHADOW
|
|
#define _CMORPHBALLSHADOW
|
|
|
|
class CAABox;
|
|
class CPlayer;
|
|
class CStateManager;
|
|
class CTexture;
|
|
template < typename T >
|
|
class TToken;
|
|
|
|
class CMorphBallShadow {
|
|
char x0_pad[0xd4];
|
|
|
|
public:
|
|
CMorphBallShadow(int, int, const TToken< CTexture >&);
|
|
~CMorphBallShadow();
|
|
|
|
void Render(CStateManager&, float);
|
|
void RenderIdBuffer(const CAABox&, CStateManager&, CPlayer&);
|
|
};
|
|
|
|
#endif // _CMORPHBALLSHADOW
|