diff --git a/OpenRa.FileFormats/IniFile.cs b/OpenRa.FileFormats/IniFile.cs index 689547cd34..f359098709 100644 --- a/OpenRa.FileFormats/IniFile.cs +++ b/OpenRa.FileFormats/IniFile.cs @@ -61,6 +61,8 @@ namespace OpenRa.FileFormats sections.TryGetValue( s, out section ); return section; } + + public IEnumerable Sections { get { return sections.Values; } } } public class IniSection : IEnumerable> diff --git a/OpenRa.FileFormats/OpenRa.FileFormats.csproj b/OpenRa.FileFormats/OpenRa.FileFormats.csproj index 97df2ae56e..97abe4236c 100644 --- a/OpenRa.FileFormats/OpenRa.FileFormats.csproj +++ b/OpenRa.FileFormats/OpenRa.FileFormats.csproj @@ -52,6 +52,7 @@ +