metaforce/DataSpec/DNAMP1/Tweaks/CTweakParticle.hpp

21 lines
365 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
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNAMP1
2015-08-18 05:54:43 +00:00
{
struct CTweakParticle final : ITweakParticle
2015-08-18 05:54:43 +00:00
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA_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
};
}