2022-11-07 13:30:53 +00:00
|
|
|
#ifndef _CRIPPERCONTROLLEDPLATFORM
|
|
|
|
#define _CRIPPERCONTROLLEDPLATFORM
|
|
|
|
|
|
|
|
#include "MetroidPrime/ScriptObjects/CScriptPlatform.hpp"
|
|
|
|
|
|
|
|
class CRipperControlledPlatform : public CScriptPlatform {
|
|
|
|
|
|
|
|
public:
|
|
|
|
CRipperControlledPlatform(
|
|
|
|
TUniqueId, TUniqueId, const rstl::string&, const CEntityInfo&, const CTransform4f&,
|
|
|
|
const CAABox&, bool, const rstl::optional_object< TLockedToken< CCollidableOBBTreeGroupContainer > >&);
|
|
|
|
~CRipperControlledPlatform();
|
|
|
|
|
2023-02-06 17:01:01 +00:00
|
|
|
CQuaternion Move(float, CStateManager&) override;
|
2022-11-07 13:30:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
TUniqueId x358_owner;
|
|
|
|
float x35c_yaw;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CRIPPERCONTROLLEDPLATFORM
|