2022-10-09 01:13:17 -04:00
|
|
|
#ifndef _CEFFECTCOMPONENT
|
|
|
|
|
#define _CEFFECTCOMPONENT
|
2022-08-14 14:38:41 -04:00
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
2023-01-07 18:11:54 -08:00
|
|
|
#include "Kyoto/Particles/CParticleData.hpp"
|
2022-08-14 14:38:41 -04:00
|
|
|
|
|
|
|
|
class CEffectComponent {
|
2026-02-28 00:58:47 -07:00
|
|
|
public:
|
|
|
|
|
const rstl::string& GetComponentName() const { return x0_name; }
|
|
|
|
|
const SObjectTag& GetParticleTag() const { return x10_tag; }
|
|
|
|
|
const rstl::string& GetSegmentName() const { return x18_boneName; }
|
|
|
|
|
float GetScale() const { return x28_scale; }
|
|
|
|
|
CParticleData::EParentedMode GetParentedMode() const { return x2c_parentedMode; }
|
|
|
|
|
uint GetFlags() const { return x30_flags; }
|
|
|
|
|
|
2022-08-14 14:38:41 -04:00
|
|
|
private:
|
|
|
|
|
rstl::string x0_name;
|
|
|
|
|
SObjectTag x10_tag;
|
|
|
|
|
rstl::string x18_boneName;
|
2022-10-09 01:37:23 -04:00
|
|
|
float x28_scale;
|
2022-08-14 14:38:41 -04:00
|
|
|
CParticleData::EParentedMode x2c_parentedMode;
|
2022-09-05 00:01:13 -04:00
|
|
|
uint x30_flags;
|
2022-08-14 14:38:41 -04:00
|
|
|
};
|
|
|
|
|
|
2022-10-09 01:13:17 -04:00
|
|
|
#endif // _CEFFECTCOMPONENT
|