mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
32 lines
809 B
C#
32 lines
809 B
C#
namespace SabreTools.Models.PlayStation3
|
|
{
|
|
/// <see href="https://psdevwiki.com/ps3/PARAM.SFO"/>
|
|
public class SFOHeader
|
|
{
|
|
/// <summary>
|
|
/// "\0PSF"
|
|
/// </summary>
|
|
public byte[]? Magic { get; set; }
|
|
|
|
/// <summary>
|
|
/// Version
|
|
/// </summary>
|
|
public uint Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Absolute start offset of key_table
|
|
/// </summary>
|
|
public uint KeyTableStart { get; set; }
|
|
|
|
/// <summary>
|
|
/// Absolute start offset of data_table
|
|
/// </summary>
|
|
public uint DataTableStart { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of entries in index_table, key_table, and data_table
|
|
/// </summary>
|
|
public uint TablesEntries { get; set; }
|
|
}
|
|
}
|