Files
Z3D/include/assets/data_stores/mesh_store.hpp

17 lines
303 B
C++

#pragma once
#include "generic/generic_mesh_store.hpp"
namespace assets
{
using mesh_store = detail::generic_mesh_store<
mesh_vertex_components::position,
mesh_vertex_components::normal,
mesh_vertex_components::tex_coord,
mesh_vertex_components::color,
mesh_vertex_components::reflectance
>;
}