13 lines
249 B
C#
13 lines
249 B
C#
public enum AudioPickSubItemMode
|
|
{
|
|
Disabled = 0,
|
|
Random = 1,
|
|
RandomNotSameTwice = 2,
|
|
Sequence = 3,
|
|
SequenceWithRandomStart = 4,
|
|
AllSimultaneously = 5,
|
|
TwoSimultaneously = 6,
|
|
StartLoopSequenceWithFirst = 7,
|
|
RandomNotSameTwiceOddsEvens = 8
|
|
}
|