#ifndef HMDLMETA_HPP #define HMDLMETA_HPP #include #include namespace HECL { enum HMDLTopology : atUint32 { TopologyTriangles, TopologyTriStrips, }; #define HECL_HMDL_META_SZ 32 struct HMDLMeta : Athena::io::DNA { DECL_DNA Value magic = SBIG('TACO'); Value topology; Value vertStride; Value vertCount; Value indexCount; Value colorCount; Value uvCount; Value weightCount; }; } #endif // HMDLMETA_HPP