prime/include/MetroidPrime/CParticleData.hpp
Luke Street 234afca6c2 clang-format pass
Former-commit-id: 6a979e343f6a88e4c9b78d3917c1fabfcb211a0a
2022-09-18 02:05:46 -04:00

36 lines
581 B
C++

#ifndef _CPARTICLEDATA_HPP
#define _CPARTICLEDATA_HPP
#include "types.h"
#include "Kyoto/IObjectStore.hpp"
#include "Kyoto/Math/CVector3f.hpp"
#include "rstl/string.hpp"
class CParticleData {
public:
enum EParentedMode {
kPM_Initial,
kPM_ContinuousEmitter,
kPM_ContinuousSystem,
};
private:
uint x0_duration;
SObjectTag x4_particle;
rstl::string xc_boneName;
f32 x1c_scale;
EParentedMode x20_parentMode;
};
class CAuxiliaryParticleData {
private:
uint x0_duration;
SObjectTag x4_particle;
CVector3f xc_translation;
f32 x18_scale;
};
#endif