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