mirror of https://github.com/AxioDL/metaforce.git
parent
b1f55c2733
commit
b65ac4e9f8
|
@ -8,9 +8,14 @@ namespace Retro
|
||||||
namespace DNAMP1
|
namespace DNAMP1
|
||||||
{
|
{
|
||||||
|
|
||||||
class CTweakParticle : BigYAML
|
struct CTweakParticle : BigYAML
|
||||||
{
|
{
|
||||||
DECL_YAML
|
DECL_YAML
|
||||||
|
String<-1> m_particle;
|
||||||
|
String<-1> m_powerBeam;
|
||||||
|
String<-1> m_genThrust;
|
||||||
|
|
||||||
|
CTweakParticle(Athena::io::IStreamReader& reader) { this->read(reader); }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,8 @@ namespace Retro
|
||||||
namespace MP1
|
namespace MP1
|
||||||
{
|
{
|
||||||
|
|
||||||
CTweakParticle::CTweakParticle(CInputStream&)
|
CTweakParticle::CTweakParticle(CInputStream& reader)
|
||||||
|
: DNAMP1::CTweakParticle(reader)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace MP1
|
||||||
class CTweakParticle : DNAMP1::CTweakParticle
|
class CTweakParticle : DNAMP1::CTweakParticle
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CTweakParticle(CInputStream&);
|
CTweakParticle(CInputStream& reader);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue