mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 10:17:02 +00:00
Various CPlayer and CBodyStateCmdMgr imps
This commit is contained in:
43
Runtime/MP1/World/CMetroid.hpp
Normal file
43
Runtime/MP1/World/CMetroid.hpp
Normal file
@@ -0,0 +1,43 @@
|
||||
#ifndef CMETROID_HPP
|
||||
#define CMETROID_HPP
|
||||
|
||||
#include "World/CPatterned.hpp"
|
||||
#include "World/CAnimationParameters.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
namespace MP1
|
||||
{
|
||||
|
||||
class CMetroidData
|
||||
{
|
||||
CDamageVulnerability x0_dVuln1;
|
||||
CDamageVulnerability x68_dVuln2;
|
||||
float xd0_;
|
||||
float xd4_;
|
||||
float xd8_;
|
||||
float xdc_;
|
||||
float xe0_;
|
||||
float xe4_;
|
||||
std::experimental::optional<CAnimationParameters> xe8_animParms1;
|
||||
std::experimental::optional<CAnimationParameters> xf8_animParms2;
|
||||
std::experimental::optional<CAnimationParameters> x108_animParms3;
|
||||
std::experimental::optional<CAnimationParameters> x118_animParms4;
|
||||
bool x128_24_ : 1;
|
||||
public:
|
||||
CMetroidData(CInputStream& in);
|
||||
};
|
||||
|
||||
class CMetroid : public CPatterned
|
||||
{
|
||||
public:
|
||||
static constexpr ECharacter CharacterType = ECharacter::Metroid;
|
||||
CMetroid(TUniqueId uid, const std::string& name, EFlavorType flavor, const CEntityInfo& info,
|
||||
const zeus::CTransform& xf, CModelData&& mData, const CPatternedInfo& pInfo,
|
||||
const CActorParameters& aParms, const CMetroidData& metroidData);
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif // CMETROID_HPP
|
||||
Reference in New Issue
Block a user