2015-08-18 05:54:43 +00:00
|
|
|
#ifndef _DNAMP1_CTWEAKPARTICLE_HPP_
|
|
|
|
#define _DNAMP1_CTWEAKPARTICLE_HPP_
|
|
|
|
|
2015-11-02 18:45:39 +00:00
|
|
|
#include "../../DNACommon/Tweaks/ITweakParticle.hpp"
|
2015-08-18 05:54:43 +00:00
|
|
|
|
2016-02-13 09:02:47 +00:00
|
|
|
namespace DataSpec
|
2015-08-18 05:54:43 +00:00
|
|
|
{
|
|
|
|
namespace DNAMP1
|
|
|
|
{
|
|
|
|
|
2015-11-02 18:45:39 +00:00
|
|
|
struct CTweakParticle : ITweakParticle
|
2015-08-18 05:54:43 +00:00
|
|
|
{
|
|
|
|
DECL_YAML
|
2015-09-23 19:01:12 +00:00
|
|
|
String<-1> m_particle;
|
|
|
|
String<-1> m_powerBeam;
|
|
|
|
String<-1> m_genThrust;
|
|
|
|
|
2017-01-26 10:06:18 +00:00
|
|
|
CTweakParticle()=default;
|
2016-03-04 23:04:53 +00:00
|
|
|
CTweakParticle(athena::io::IStreamReader& reader) { this->read(reader); }
|
2015-08-18 05:54:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _DNAMP1_CTWEAKPARTICLE_HPP_
|