mirror of
https://github.com/zeldaret/mm.git
synced 2026-08-10 19:16:40 -04:00
e4e0aed7cb
* Update MinimapList struct * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "5786abbdd" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "5786abbdd" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "dbb99be"
29 lines
651 B
C++
29 lines
651 B
C++
#pragma once
|
|
|
|
#include "ZFile.h"
|
|
#include "ZResource.h"
|
|
|
|
class ZCollisionPoly : public ZResource
|
|
{
|
|
public:
|
|
uint16_t type;
|
|
uint16_t vtxA, vtxB, vtxC;
|
|
uint16_t normX, normY, normZ;
|
|
uint16_t dist;
|
|
|
|
ZCollisionPoly(ZFile* nParent);
|
|
~ZCollisionPoly();
|
|
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
std::string GetDefaultName(const std::string& prefix) const override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
bool DoesSupportArray() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
}; |