metaforce/DataSpec/DNAMP1/Tweaks/CTweakParticle.hpp

25 lines
432 B
C++
Raw Normal View History

2015-08-18 05:54:43 +00:00
#ifndef _DNAMP1_CTWEAKPARTICLE_HPP_
#define _DNAMP1_CTWEAKPARTICLE_HPP_
#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
{
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;
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_