Match and link CRipperControlledPlatform

Former-commit-id: f084095190
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-07 15:30:53 +02:00
parent 8b9a10256a
commit cd46490a6c
9 changed files with 93 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
#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();
CQuaternion Move(float, CStateManager&) override;
private:
TUniqueId x358_owner;
float x35c_yaw;
};
#endif // _CRIPPERCONTROLLEDPLATFORM