Don’t export certain Init types.

This commit is contained in:
Paul Chote
2015-04-20 02:52:03 +12:00
parent b5ff247fa5
commit 8a171bb452
5 changed files with 9 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ namespace OpenRA.Mods.Common.Traits
}
}
public class RuntimeNeighbourInit : IActorInit<Dictionary<CPos, string[]>>
public class RuntimeNeighbourInit : IActorInit<Dictionary<CPos, string[]>>, ISuppressInitExport
{
[FieldFromYamlKey] readonly Dictionary<CPos, string[]> value = null;
public RuntimeNeighbourInit() { }