14 lines
233 B
C++
14 lines
233 B
C++
#pragma once
|
|
|
|
#include "generic/generic_basic_store.hpp"
|
|
#include "assets/identifiers.hpp"
|
|
#include "assets/data/texture_data.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
|
|
using texture_store = detail::generic_basic_store<texture_id, texture_data>;
|
|
|
|
}
|
|
|