metaforce/Runtime/Particle/CElectricDescription.hpp

38 lines
1.2 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
#include <memory>
#include "Runtime/Particle/CColorElement.hpp"
#include "Runtime/Particle/CIntElement.hpp"
#include "Runtime/Particle/CModVectorElement.hpp"
#include "Runtime/Particle/CParticleDataFactory.hpp"
#include "Runtime/Particle/CRealElement.hpp"
#include "Runtime/Particle/CUVElement.hpp"
#include "Runtime/Particle/CVectorElement.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CElectricDescription {
2016-02-13 00:23:17 -08:00
public:
2018-12-07 21:30:43 -08:00
std::unique_ptr<CIntElement> x0_LIFE;
std::unique_ptr<CIntElement> x4_SLIF;
std::unique_ptr<CRealElement> x8_GRAT;
std::unique_ptr<CIntElement> xc_SCNT;
std::unique_ptr<CIntElement> x10_SSEG;
std::unique_ptr<CColorElement> x14_COLR;
std::unique_ptr<CEmitterElement> x18_IEMT;
std::unique_ptr<CEmitterElement> x1c_FEMT;
std::unique_ptr<CRealElement> x20_AMPL;
std::unique_ptr<CRealElement> x24_AMPD;
std::unique_ptr<CRealElement> x28_LWD1;
std::unique_ptr<CRealElement> x2c_LWD2;
std::unique_ptr<CRealElement> x30_LWD3;
std::unique_ptr<CColorElement> x34_LCL1;
std::unique_ptr<CColorElement> x38_LCL2;
std::unique_ptr<CColorElement> x3c_LCL3;
SSwooshGeneratorDesc x40_SSWH;
SChildGeneratorDesc x50_GPSM;
SChildGeneratorDesc x60_EPSM;
2019-04-06 22:14:48 -07:00
bool x70_ZERY = false;
2016-02-10 18:39:08 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce