Add a stub for upgrading map actors.

This commit is contained in:
Paul Chote
2015-04-24 19:50:26 +12:00
parent 4b1f541f34
commit 981f782cf9
3 changed files with 8 additions and 0 deletions

View File

@@ -1349,5 +1349,11 @@ namespace OpenRA.Mods.Common.UtilityCommands
foreach (var node in nodes)
UpgradePlayers(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
internal static void UpgradeActors(int engineVersion, ref List<MiniYamlNode> nodes, MiniYamlNode parent, int depth)
{
foreach (var node in nodes)
UpgradeActors(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}
}