mirror of https://github.com/AxioDL/metaforce.git
32 lines
881 B
C++
32 lines
881 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Runtime/Streams/IOStreams.hpp"
|
|
#include "Runtime/RetroTypes.hpp"
|
|
#include "Runtime/Character/CParticleData.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
class CEffectComponent {
|
|
std::string x0_name;
|
|
SObjectTag x10_tag;
|
|
std::string x18_boneName;
|
|
float x28_scale;
|
|
CParticleData::EParentedMode x2c_parentedMode;
|
|
u32 x30_flags;
|
|
static SObjectTag GetSObjectTagFromStream(CInputStream& in);
|
|
|
|
public:
|
|
explicit CEffectComponent(CInputStream& in);
|
|
|
|
std::string_view GetComponentName() const { return x0_name; }
|
|
const SObjectTag& GetParticleTag() const { return x10_tag; }
|
|
std::string_view GetSegmentName() const { return x18_boneName; }
|
|
float GetScale() const { return x28_scale; }
|
|
CParticleData::EParentedMode GetParentedMode() const { return x2c_parentedMode; }
|
|
u32 GetFlags() const { return x30_flags; }
|
|
};
|
|
|
|
} // namespace metaforce
|