mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 23:05:12 +00:00
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; }
|
||
|
|
}
|
||
|
|
}
|