metaforce/Runtime/Character/CParticleData.cpp

13 lines
306 B
C++
Raw Normal View History

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