20 lines
362 B
C++
20 lines
362 B
C++
#pragma once
|
|
|
|
#include "generic/generic_material_store.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
|
|
using material_store = detail::generic_material_store<
|
|
material_components::surface_properties,
|
|
material_components::alpha,
|
|
texture_store::id_type,
|
|
texture_store::id_type,
|
|
texture_store::id_type,
|
|
texture_store::id_type,
|
|
texture_store::id_type,
|
|
texture_store::id_type
|
|
>;
|
|
|
|
}
|