MDLParser
Simple and modern library for parsing the Source engine model formats
Loading...
Searching...
No Matches
limits.hpp
1#pragma once
2
3#include <cstdint>
4
5namespace MdlParser::Limits {
6 constexpr uint8_t MAX_NUM_LODS = 8;
7 constexpr uint8_t MAX_NUM_BONES_PER_VERT = 3;
8}