BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
models.hpp
1#pragma once
2
3#include "common.hpp"
4#include <cstdint>
5
6namespace BspParser::Structs {
7 struct Model {
8 Vector mins, maxs;
9 Vector origin;
10 int32_t headNode;
11 int32_t firstFace, numFaces;
12 };
13}
Definition: BSPParser.hpp:22
Definition: models.hpp:7
Definition: common.hpp:18