mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
12 lines
374 B
C#
12 lines
374 B
C#
namespace MPF.ExecutionContexts.Dreamdump
|
|
{
|
|
public static class SettingConstants
|
|
{
|
|
public const string RereadCount = "DreamdumpRereadCount";
|
|
public const int RereadCountDefault = 20;
|
|
|
|
public const string SectorOrder = "DreamdumpSectorOrder";
|
|
public static readonly SectorOrder SectorOrderDefault = Dreamdump.SectorOrder.NONE;
|
|
}
|
|
}
|