Files
Z3D/include/assets/prefetch_lookups/material_prefetch_lookup.hpp

13 lines
235 B
C++

#pragma once
#include <filesystem>
#include <unordered_map>
#include "assets/data_stores/material_store.hpp"
namespace assets
{
using material_prefetch_lookup = std::unordered_map<std::filesystem::path, material_store::id_type>;
}