#ifndef MESH_HPP #define MESH_HPP #include "vector.hpp" #include #include #include class Scene; typedef struct TRIANGLE { std::tuple vertex_indices; std::uint8_t color_idx; } TRIANGLE; class Mesh { public: usu::vector vertices; usu::vector triangles; }; #endif // MESH_HPP