sandbox
Loading...
Searching...
No Matches
metadata.hpp
1// SPDX-License-Identifier: MIT
2#ifndef LIBSBX_ASSETS_METADATA_HPP_
3#define LIBSBX_ASSETS_METADATA_HPP_
4
5#include <filesystem>
6
7#include <libsbx/utility/hashed_string.hpp>
8
9#include <libsbx/math/uuid.hpp>
10
11namespace sbx::assets {
12
13struct metadata {
14 math::uuid id;
15 std::filesystem::path path;
16}; // struct metadata
17
18} // namespace sbx::assets
19
20#endif // LIBSBX_ASSETS_METADATA_HPP_
Definition: uuid.hpp:160
Definition: metadata.hpp:13