2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 23:07:43 +00:00

CMetaree structure

This commit is contained in:
2017-08-20 17:29:59 -07:00
parent d67d6a1aa7
commit cae4ab37c1
4 changed files with 107 additions and 2 deletions

View File

@@ -66,10 +66,11 @@ public:
};
enum class EColliderType
{
Zero = 0,
One = 1
};
private:
protected:
union
{
struct
@@ -83,6 +84,9 @@ private:
};
ECharacter x34c_character;
float x338_;
std::unique_ptr<CBodyController> x450_bodyController;
union
{
struct
@@ -99,6 +103,7 @@ public:
CPatterned::EMovementType movement, EColliderType collider, EBodyType body,
const CActorParameters& params, int variant);
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) {}
virtual void Death(CStateManager&, const zeus::CVector3f&, EStateMsg) {}
virtual void KnockBack(const zeus::CVector3f&, CStateManager&, const CDamageInfo& info, EKnockBackType, bool, float) {}