13 lines
259 B
C++
13 lines
259 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <unordered_map>
|
|
#include "assets/data_stores/material_library_store.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
|
|
using material_library_prefetch_lookup = std::unordered_map<std::filesystem::path, material_library_store::id_type>;
|
|
|
|
}
|