botw-toolset/IO/SARC/SFNT.cs
Chev a1a83285f8 Migrate from .NET Framework 4.8 to .NET 5
Also compress Resources/Icons image files, and remove unused entry in App.xaml
2021-01-18 23:33:46 -08:00

16 lines
484 B
C#

namespace BOTWToolset.IO.SARC
{
/// <summary>
/// Stores info on the SFNT header (SARC file name table), used in conjunction with <see cref="SARC"/>.
/// </summary>
public struct SFNT
{
public string Magic { get => _magic; set => _magic = value; }
private string _magic;
public ushort HeaderLength { get => _headerLength; set => _headerLength = value; }
private ushort _headerLength;
public string[] FileNames;
}
}