BSPParser
Simple and modern library for parsing the Valve BSP format
Loading...
Searching...
No Matches
vertex.hpp
1#pragma once
2
3#include "structs/common.hpp"
4
5namespace BspParser {
6 struct Vertex {
7 Structs::Vector position;
8 Structs::Vector normal;
9 Structs::Vector4 tangent;
11 float alpha = 0.f;
12 };
13}
Definition: BSPParser.hpp:8
Definition: common.hpp:6
Definition: common.hpp:24
Definition: common.hpp:18
Definition: vertex.hpp:6