kuiper-engine/include/resources/resource_index.hpp
Adam Macdonald a8d8b9b9ab
All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
initial commit
2025-04-16 01:58:29 +01:00

14 lines
205 B
C++

#pragma once
#include <filesystem>
namespace kuiper::resource
{
class index {
public:
static index from_file(const std::filesystem::path& index_path) noexcept;
};
} // namespace kuiper::resource