Files

13 lines
306 B
C++
Raw Permalink Normal View History

2020-01-15 07:07:48 -05:00
#include "Runtime/Character/CParticleData.hpp"
2016-04-10 21:10:28 -10:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-10 21:10:28 -10:00
CParticleData::CParticleData(CInputStream& in)
: x0_duration(in.ReadLong())
2018-12-07 19:30:43 -10:00
, x4_particle(in)
, xc_boneName(in.Get<std::string>())
, x1c_scale(in.ReadFloat())
, x20_parentMode(EParentedMode(in.ReadLong())) {}
2016-04-10 21:10:28 -10:00
2021-04-10 01:42:06 -07:00
} // namespace metaforce