#ifndef TRIANGLE_H #define TRIANGLE_H #include "client/rendering/Vertex.h" class Triangle final { Vertex a; Vector3 normalA; Vertex b; Vector3 normalB; Vertex c; Vector3 normalC; public: Triangle(); Triangle(const Vertex& a, const Vertex& b, const Vertex& c); }; #endif