mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-15 11:30:30 +00:00
git subrepo pull --force tools/ZAPD (#727)
subrepo: subdir: "tools/ZAPD" merged: "4751db5c9" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "4751db5c9" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
parent
77ec4d4916
commit
493bdbc3c6
115 changed files with 16370 additions and 2789 deletions
|
@ -1,8 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "ZResource.h"
|
||||
#include "ZScalar.h"
|
||||
#include "tinyxml2.h"
|
||||
|
@ -17,15 +17,16 @@ public:
|
|||
|
||||
ZVtx();
|
||||
|
||||
void ParseXML(tinyxml2::XMLElement* reader);
|
||||
void ParseXML(tinyxml2::XMLElement* reader) override;
|
||||
std::string GetSourceTypeName() override;
|
||||
std::string GetSourceOutputCode(const std::string& prefix);
|
||||
std::string GetSourceOutputCode(const std::string& prefix) override;
|
||||
void ParseRawData() override;
|
||||
int GetRawDataSize();
|
||||
int GetRawDataSize() override;
|
||||
bool DoesSupportArray() override;
|
||||
ZResourceType GetResourceType();
|
||||
ZResourceType GetResourceType() override;
|
||||
|
||||
static ZVtx* ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData, const int rawDataIndex, const std::string& nRelPath);
|
||||
static ZVtx* ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
||||
const int rawDataIndex, const std::string& nRelPath);
|
||||
|
||||
protected:
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue