1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

extend map format

This commit is contained in:
Laserlicht
2024-06-29 13:13:59 +02:00
parent 8444f7b330
commit 02bd52041b
14 changed files with 151 additions and 10 deletions

View File

@@ -55,6 +55,7 @@ enum class ESerializationVersion : int32_t
COMPACT_INTEGER_SERIALIZATION, // 845 - serialize integers in forms similar to protobuf
REMOVE_FOG_OF_WAR_POINTER, // 846 - fog of war is serialized as reference instead of pointer
SIMPLE_TEXT_CONTAINER_SERIALIZATION, // 847 - text container is serialized using common routine instead of custom approach
MAP_FORMAT_ADDITIONAL_INFOS, // 848 - serialize new infos in map format
CURRENT = SIMPLE_TEXT_CONTAINER_SERIALIZATION
CURRENT = MAP_FORMAT_ADDITIONAL_INFOS
};