mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-26 18:52:20 +00:00
12 lines
303 B
C#
12 lines
303 B
C#
namespace SabreTools.Models.CHD
|
|
{
|
|
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
|
|
public class UncompressedMapV5
|
|
{
|
|
/// <summary>
|
|
/// Starting offset / hunk size
|
|
/// </summary>
|
|
public uint StartingOffset { get; set; }
|
|
}
|
|
}
|