summaryrefslogtreecommitdiffhomepage
path: root/serialize/tile-atlas.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-01-11 13:54:53 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-01-11 14:11:47 +0100
commit7867213a01fcabb1f05b1836c2ca59dc3bb2132f (patch)
tree44af754bed0278c8bf3435df6278bd291c3043e5 /serialize/tile-atlas.hpp
parent74cf06b6b217eff32a547cf73f051f27e6b80919 (diff)
rename tile_atlas -> ground_atlas
Diffstat (limited to 'serialize/tile-atlas.hpp')
-rw-r--r--serialize/tile-atlas.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/serialize/tile-atlas.hpp b/serialize/tile-atlas.hpp
deleted file mode 100644
index 0c65c55e..00000000
--- a/serialize/tile-atlas.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-#include "src/tile-atlas.hpp"
-#include <memory>
-#include <nlohmann/json_fwd.hpp>
-
-namespace nlohmann {
-
-template<>
-struct adl_serializer<std::shared_ptr<floormat::tile_atlas>> final {
- static void to_json(json& j, const std::shared_ptr<const floormat::tile_atlas>& x);
- static void from_json(const json& j, std::shared_ptr<floormat::tile_atlas>& x);
-};
-
-} // namespace nlohmann