mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +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; }
|
|
}
|
|
}
|