mirror of https://github.com/AxioDL/metaforce.git
Added DNAType calls to SCLY
This commit is contained in:
parent
b50d1b2a8f
commit
43ddaa0dc4
|
@ -65,6 +65,11 @@ void SCLY::toYAML(Athena::io::YAMLDocWriter& docout) const
|
|||
docout.enumerate("layers", layers);
|
||||
}
|
||||
|
||||
const char* SCLY::DNAType()
|
||||
{
|
||||
return "Retro::DNAMP1::SCLY";
|
||||
}
|
||||
|
||||
void SCLY::ScriptLayer::read(Athena::io::IStreamReader& rs)
|
||||
{
|
||||
unknown = rs.readUByte();
|
||||
|
@ -148,5 +153,10 @@ void SCLY::ScriptLayer::toYAML(Athena::io::YAMLDocWriter& ws) const
|
|||
ws.leaveSubVector();
|
||||
}
|
||||
|
||||
const char* SCLY::ScriptLayer::DNAType()
|
||||
{
|
||||
return "Retro::DNAMP1::SCLY::ScriptLayer";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue