2016-02-13 09:02:47 +00:00
|
|
|
#ifndef __PSHAG_CELECTRICDESCRIPTION_HPP__
|
|
|
|
#define __PSHAG_CELECTRICDESCRIPTION_HPP__
|
2016-02-05 01:27:03 +00:00
|
|
|
|
2016-02-11 23:05:42 +00:00
|
|
|
#include "CParticleDataFactory.hpp"
|
2016-02-13 08:23:17 +00:00
|
|
|
#include "CRealElement.hpp"
|
|
|
|
#include "CIntElement.hpp"
|
|
|
|
#include "CVectorElement.hpp"
|
|
|
|
#include "CModVectorElement.hpp"
|
|
|
|
#include "CColorElement.hpp"
|
|
|
|
#include "CUVElement.hpp"
|
2016-02-11 23:05:42 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2016-02-10 22:54:47 +00:00
|
|
|
{
|
2016-02-13 05:49:59 +00:00
|
|
|
class CElectricDescription
|
2016-02-10 22:54:47 +00:00
|
|
|
{
|
2016-02-13 08:23:17 +00:00
|
|
|
public:
|
2016-02-13 06:25:29 +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;
|
2016-02-15 08:33:06 +00:00
|
|
|
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;
|
2016-02-13 08:23:17 +00:00
|
|
|
std::unique_ptr<CColorElement> x34_LCL1;
|
|
|
|
std::unique_ptr<CColorElement> x38_LCL2;
|
|
|
|
std::unique_ptr<CColorElement> x3c_LCL3;
|
2016-02-13 06:25:29 +00:00
|
|
|
SSwooshGeneratorDesc x40_SSWH;
|
|
|
|
SChildGeneratorDesc x50_GPSM;
|
|
|
|
SChildGeneratorDesc x60_EPSM;
|
|
|
|
bool x70_ZERY;
|
2016-02-11 02:39:08 +00:00
|
|
|
};
|
2016-02-10 22:54:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
#endif // __PSHAG_CELECTRICDESCRIPTION_HPP__
|