mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-04 05:35:52 +00:00
16 lines
253 B
C#
16 lines
253 B
C#
namespace MPF.ExecutionContexts.Dreamdump
|
|
{
|
|
/// <summary>
|
|
/// Drive sector order option
|
|
/// </summary>
|
|
public enum SectorOrder
|
|
{
|
|
NONE = 0,
|
|
|
|
DATA_C2,
|
|
DATA_SUB,
|
|
DATA_C2_SUB,
|
|
DATA_SUB_C2,
|
|
}
|
|
}
|