(ArchiveFormat): added ContainedFormats property.

This commit is contained in:
morkt
2018-09-22 02:46:09 +04:00
parent cba145573f
commit 68f3904e27
4 changed files with 40 additions and 9 deletions

View File

@@ -43,6 +43,9 @@ namespace GameRes
/// <summary>Short archive format description.</summary>
public string Description { get { return m_interface.Description; } }
/// <summary>Tags of formats related to this archive format (could be null).</summary>
public IEnumerable<string> ContainedFormats { get { return m_interface.ContainedFormats; } }
/// <summary>Memory-mapped view of the archive.</summary>
public ArcView File { get { return m_arc; } }