Continue work on CActor::UpdateAnimation; lots of headers n stuff

This commit is contained in:
2022-08-14 14:38:41 -04:00
parent 7c92358bf6
commit 85284f7640
43 changed files with 1190 additions and 148 deletions

View File

@@ -0,0 +1,35 @@
#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:
u32 x0_duration;
SObjectTag x4_particle;
rstl::string xc_boneName;
f32 x1c_scale;
EParentedMode x20_parentMode;
};
class CAuxiliaryParticleData {
private:
u32 x0_duration;
SObjectTag x4_particle;
CVector3f xc_translation;
f32 x18_scale;
};
#endif