17 lines
303 B
C++
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
|
|
>;
|
|
|
|
}
|