#ifndef __COMMON_ELSC_HPP__ #define __COMMON_ELSC_HPP__ #include "ParticleCommon.hpp" #include "PAK.hpp" #include "athena/FileWriter.hpp" namespace DataSpec { namespace DNAParticle { template struct ELSM : BigYAML { static const char* DNAType() { return "urde::ELSM"; } const char* DNATypeV() const { return DNAType(); } IntElementFactory x0_LIFE; IntElementFactory x4_SLIF; RealElementFactory x8_GRAT; IntElementFactory xc_SCNT; IntElementFactory x10_SSEG; ColorElementFactory x14_COLR; EmitterElementFactory x18_IEMT; EmitterElementFactory x1c_FEMT; RealElementFactory x20_AMPL; RealElementFactory x24_AMPD; RealElementFactory x28_LWD1; RealElementFactory x2c_LWD2; RealElementFactory x30_LWD3; ColorElementFactory x34_LCL1; ColorElementFactory x38_LCL2; ColorElementFactory x3c_LCL3; ChildResourceFactory x40_SSWH; ChildResourceFactory x50_GPSM; ChildResourceFactory x60_EPSM; BoolHelper x70_ZERY; void read(athena::io::YAMLDocReader& r); void write(athena::io::YAMLDocWriter& w) const; size_t binarySize(size_t __isz) const; void read(athena::io::IStreamReader& r); void write(athena::io::IStreamWriter& w) const; void gatherDependencies(std::vector&) const; }; template bool ExtractELSM(PAKEntryReadStream& rs, const hecl::ProjectPath& outPath); template bool WriteELSM(const ELSM& elsm, const hecl::ProjectPath& outPath); } } #endif // __COMMON_ELSC_HPP__