2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 05:47:43 +00:00

Additional ThermalCold filter work; CStateManager fields

This commit is contained in:
Jack Andersen
2016-07-22 09:46:30 -10:00
parent 68dcc9ca57
commit 6bbed11859
21 changed files with 236 additions and 69 deletions

24
Runtime/World/CPlayer.hpp Normal file
View File

@@ -0,0 +1,24 @@
#ifndef __URDE_CPLAYER_HPP__
#define __URDE_CPLAYER_HPP__
#include "CPhysicsActor.hpp"
#include "zeus/CAABox.hpp"
#include "zeus/CTransform.hpp"
namespace urde
{
class CMaterialList;
class CMorphBall;
class CPlayer : public CPhysicsActor
{
std::unique_ptr<CMorphBall> x768_morphball;
public:
CPlayer(TUniqueId, const zeus::CTransform&, const zeus::CAABox&, unsigned int,
const zeus::CVector3f&, float, float, float, float, const CMaterialList&);
};
}
#endif // __URDE_CPLAYER_HPP__