mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-29 08:16:11 +00:00
5015af4c57
subrepo: subdir: "tools/ZAPD" merged: "f54f2fa96" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "f54f2fa96" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
29 lines
No EOL
651 B
C++
29 lines
No EOL
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;
|
|
}; |