Files
MPF/MPF.ExecutionContexts/Dreamdump/SettingConstants.cs
2026-02-07 10:49:36 -05:00

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;
}
}