mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
* Add model for sim file * Add sim parsing for steam2 installer set * First round of fixes
31 lines
719 B
C#
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; }
|
|
}
|
|
}
|