2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-05 17:15:52 +00:00
metaforce/DataSpec/DNAMP1/Tweaks/CTweakParticle.hpp
2018-10-06 17:42:33 -10:00

21 lines
365 B
C++

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