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

Code style: serialize everything on own lines for easier debugging (#357)

This commit is contained in:
ArseniyShestakov
2017-07-31 16:35:42 +03:00
committed by GitHub
parent 980926a7bd
commit 9d9c026c85
49 changed files with 1207 additions and 326 deletions

View File

@@ -179,10 +179,18 @@ public:
{
if(version >= 759)
{
h & instanceName & typeName & subTypeName;
h & instanceName;
h & typeName;
h & subTypeName;
}
h & pos & ID & subID & id & tempOwner & blockVisit & appearance;
h & pos;
h & ID;
h & subID;
h & id;
h & tempOwner;
h & blockVisit;
h & appearance;
//definfo is handled by map serializer
}