blob: 4043c8de91eeaf72e652f0f1f525b43fa596777a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "serialize.hpp"
#include <nlohmann/json.hpp>
#include "json-magnum.hpp"
std::tuple<big_atlas, bool> big_atlas::from_json(const std::filesystem::path& pathname) noexcept
{
}
bool big_atlas::to_json(const std::filesystem::path& pathname) noexcept
{
}
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(big_atlas_tile, position)
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(big_atlas_entry, tiles)
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(big_atlas, entries)
|