metaforce/DataSpec/DNAMP1/Tweaks/CTweakParticle.hpp

18 lines
384 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-08-18 05:54:43 +00:00
#include "../../DNACommon/Tweaks/ITweakParticle.hpp"
2015-08-18 05:54:43 +00:00
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP1 {
2015-08-18 05:54:43 +00:00
2018-12-08 05:30:43 +00:00
struct CTweakParticle final : ITweakParticle {
AT_DECL_DNA_YAML
String<-1> m_particle;
String<-1> m_powerBeam;
String<-1> m_genThrust;
2015-09-23 19:01:12 +00:00
2018-12-08 05:30:43 +00:00
CTweakParticle() = default;
CTweakParticle(athena::io::IStreamReader& reader) { this->read(reader); }
2015-08-18 05:54:43 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP1