mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-12 20:26:02 -04:00
194c99d80b
* a
* git subrepo pull tools/asm-differ --force
subrepo:
subdir: "tools/asm-differ"
merged: "6f8f80b71"
upstream:
origin: "https://github.com/simonlindholm/asm-differ"
branch: "main"
commit: "6f8f80b71"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* git subrepo pull tools/z64compress --force
subrepo:
subdir: "tools/z64compress"
merged: "9e7a6dbfa"
upstream:
origin: "https://github.com/z64me/z64compress.git"
branch: "main"
commit: "9e7a6dbfa"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* git subrepo pull tools/ZAPD --force
subrepo:
subdir: "tools/ZAPD"
merged: "bf16ff7c4"
upstream:
origin: "https://github.com/zeldaret/ZAPD.git"
branch: "master"
commit: "bf16ff7c4"
git-subrepo:
version: "0.4.3"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "2f68596"
* Revert "git subrepo pull tools/z64compress --force"
This reverts commit a7cc87394e.
23 lines
482 B
C++
23 lines
482 B
C++
#pragma once
|
|
|
|
#include "ZResource.h"
|
|
|
|
class ZPointer : public ZResource
|
|
{
|
|
public:
|
|
segptr_t ptr = SEGMENTED_NULL;
|
|
std::string type;
|
|
|
|
ZPointer(ZFile* nParent);
|
|
|
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
|
void ParseRawData() override;
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
bool DoesSupportArray() const override;
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
};
|