2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-02-05 01:27:03 +00:00
|
|
|
|
2019-09-22 21:52:05 +00:00
|
|
|
#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"
|
2016-02-11 23:05:42 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CElectricDescription {
|
2016-02-13 08:23:17 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00: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-07 05:14:48 +00:00
|
|
|
bool x70_ZERY = false;
|
2016-02-11 02:39:08 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|