mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 05:39:42 +00:00
* Fix endianness in STFS Descriptor * Support optional header for installer packages * Fix field types * Fix syntax * Fix build
17 lines
500 B
C#
17 lines
500 B
C#
namespace SabreTools.Data.Models.STFS
|
|
{
|
|
/// <summary>
|
|
/// STFS Optional header present in STFS packages for installers
|
|
/// Original research, field not mentioned on free60 wiki
|
|
/// </summary>
|
|
public class InstallerHeader
|
|
{
|
|
/// <summary>
|
|
/// String indicating type of installer
|
|
/// See Constants.InstallerType*
|
|
/// </summary>
|
|
/// <remarks>4 bytes, ASCII</remarks>
|
|
public byte[] InstallerType { get; set; } = new byte[4];
|
|
}
|
|
}
|