Files
SabreTools.Serialization/SabreTools.Data.Models/Steam2Installer/Header.cs
HeroponRikiBestest 79ca9f617e Add sim parsing for Steam2 sim/sid installers (#95)
* Add model for sim file

* Add sim parsing for steam2 installer set

* First round of fixes
2026-07-06 09:21:17 -04:00

31 lines
719 B
C#

using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.Steam2Installer
{
/// <summary>
/// Header from the .sim file.
/// </summary>
public sealed class Header
{
/// <summary>
/// .sim file magic value
/// </summary>
public uint Magic { get; set; }
/// <summary>
/// Version (0x00000001)
/// </summary>
public uint Version { get; set; }
/// <summary>
/// Number of discs
/// </summary>
public uint Discs { get; set; }
/// <summary>
/// Size of the section containing file and path strings.
/// </summary>
public uint StringsSize { get; set; }
}
}