2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 17:47:43 +00:00

bmesh generation tweaks

This commit is contained in:
Jack Andersen
2015-09-10 18:53:32 -10:00
parent cb7c642dac
commit 40c39ee83b
4 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
#ifndef _DNACOMMON_DEAFBABE_HPP_
#define _DNACOMMON_DEAFBABE_HPP_
#include "DNACommon.hpp"
namespace Retro
{
namespace DNACommon
{
struct DeafBabe : BigDNA
{
Delete expl;
std::vector<atUint64> materials;
std::vector<atUint8> vertMats;
std::vector<atUint8> edgeMats;
std::vector<atUint8> polyMats;
std::vector<std::pair<atUint16, atUint16>> edgeVertConnections;
std::vector<std::pair<atUint16, atUint16>> triangleEdgeConnections;
void read(Athena::io::IStreamReader& reader)
{
}
void write(Athena::io::IStreamWriter& writer) const
{
}
};
}
}
#endif // _DNACOMMON_DEAFBABE_HPP_