BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
textures.hpp
1#pragma once
2
3#include "common.hpp"
4#include "../enums/surface.hpp"
5#include <array>
6
7namespace BspParser::Structs {
8 struct TexInfo {
9 std::array<Vector4, 2> textureVecs;
10 std::array<Vector4, 2> lightmapVecs;
11 Enums::Surface flags;
12 int32_t texData;
13 };
14
15 struct TexData {
16 Vector reflectivity;
17 int32_t nameStringTableId;
18 int32_t width, height;
19 int32_t viewWidth, viewHeight;
20 };
21}
Definition: BSPParser.hpp:22
Definition: textures.hpp:15
Definition: textures.hpp:8
Definition: common.hpp:18