2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-09 05:13:29 +00:00
metaforce/DataSpec/DNAMP1/Tweaks/CTweakParticle.hpp
2017-01-26 02:06:18 -08:00

26 lines
462 B
C++

#ifndef _DNAMP1_CTWEAKPARTICLE_HPP_
#define _DNAMP1_CTWEAKPARTICLE_HPP_
#include "../../DNACommon/Tweaks/ITweakParticle.hpp"
namespace DataSpec
{
namespace DNAMP1
{
struct CTweakParticle : ITweakParticle
{
DECL_YAML
String<-1> m_particle;
String<-1> m_powerBeam;
String<-1> m_genThrust;
CTweakParticle()=default;
CTweakParticle(athena::io::IStreamReader& reader) { this->read(reader); }
};
}
}
#endif // _DNAMP1_CTWEAKPARTICLE_HPP_