diff options
Diffstat (limited to 'serialize/world-impl.hpp')
-rw-r--r-- | serialize/world-impl.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/serialize/world-impl.hpp b/serialize/world-impl.hpp index fc7fe79c..f6e856f5 100644 --- a/serialize/world-impl.hpp +++ b/serialize/world-impl.hpp @@ -27,6 +27,7 @@ * 12) Don't write entity name twice. * 13) Entity counter initialized to 1024. * 14) Always store entity offset, rework how sc_exact works. + * 15) Add light alpha. */ namespace floormat { @@ -47,7 +48,7 @@ template<typename T> constexpr inline T int_max = std::numeric_limits<T>::max(); #define file_magic ".floormat.save" -constexpr inline proto_t proto_version = 14; +constexpr inline proto_t proto_version = 15; constexpr inline size_t atlas_name_max = 128; constexpr inline auto null_atlas = (atlasid)-1LL; |