mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-28 09:51:28 +00:00
git subrepo pull --force tools/ZAPD (#653)
subrepo: subdir: "tools/ZAPD" merged: "2e1174063" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "2e1174063" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
parent
d739765031
commit
588de66d06
32 changed files with 405 additions and 65 deletions
|
@ -12,7 +12,6 @@ ZResource::ZResource()
|
|||
rawData = vector<uint8_t>();
|
||||
rawDataIndex = 0;
|
||||
outputDeclaration = true;
|
||||
arrayCnt = -1;
|
||||
}
|
||||
|
||||
void ZResource::ParseXML(tinyxml2::XMLElement* reader)
|
||||
|
@ -54,6 +53,11 @@ bool ZResource::IsExternalResource()
|
|||
return false;
|
||||
}
|
||||
|
||||
bool ZResource::DoesSupportArray()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
std::string ZResource::GetExternalExtension()
|
||||
{
|
||||
return "";
|
||||
|
@ -94,11 +98,20 @@ string ZResource::GetSourceOutputHeader(const std::string& prefix)
|
|||
return "";
|
||||
}
|
||||
|
||||
void ZResource::ParseRawData()
|
||||
{
|
||||
}
|
||||
|
||||
void ZResource::GenerateHLIntermediette(HLFileIntermediette& hlFile)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
std::string ZResource::GetSourceTypeName()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
ZResourceType ZResource::GetResourceType()
|
||||
{
|
||||
return ZResourceType::Error;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue