diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-20 18:30:39 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-01-20 18:31:41 +0100 |
| commit | ad9cd66554fc2b57b56ca07f33b87fd16c4cfdab (patch) | |
| tree | 43981f417c74318c13a992487dd8c4037e26bd20 /serialize/world-impl.hpp | |
| parent | 629aa26aa5a8d915184f101a6aee4f505ef29c27 (diff) | |
w
Diffstat (limited to 'serialize/world-impl.hpp')
| -rw-r--r-- | serialize/world-impl.hpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/serialize/world-impl.hpp b/serialize/world-impl.hpp deleted file mode 100644 index 7eb6c7c9..00000000 --- a/serialize/world-impl.hpp +++ /dev/null @@ -1,34 +0,0 @@ -#pragma once -#include <cstdio> -#include <concepts> -#include <Corrade/Containers/StringView.h> - -namespace floormat::Serialize { - -using tilemeta = uint8_t; -using atlasid = uint32_t; -using chunksiz = uint32_t; -using proto_t = uint32_t; - -template<typename T> struct int_traits; - -template<std::unsigned_integral T> struct int_traits<T> { static constexpr T max = T(-1); }; -template<std::signed_integral T> struct int_traits<T> { static constexpr T max = T(-1)&~(T(1) << sizeof(T)*8-1); }; - -namespace { - - - -} // namespace - -} // namespace floormat::Serialize - -namespace floormat { - -namespace { - - - -} // namespace - -} // namespace floormat |
