2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CEFFECTCOMPONENT
|
|
|
|
#define _CEFFECTCOMPONENT
|
2022-08-14 18:38:41 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/CParticleData.hpp"
|
|
|
|
|
|
|
|
class CEffectComponent {
|
|
|
|
private:
|
|
|
|
rstl::string x0_name;
|
|
|
|
SObjectTag x10_tag;
|
|
|
|
rstl::string x18_boneName;
|
2022-10-09 05:37:23 +00:00
|
|
|
float x28_scale;
|
2022-08-14 18:38:41 +00:00
|
|
|
CParticleData::EParentedMode x2c_parentedMode;
|
2022-09-05 04:01:13 +00:00
|
|
|
uint x30_flags;
|
2022-08-14 18:38:41 +00:00
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CEFFECTCOMPONENT
|