13 lines
177 B
C#
13 lines
177 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Mear.Models.PlayerControls
|
|
{
|
|
public enum Shuffle
|
|
{
|
|
Off = 0,
|
|
All
|
|
}
|
|
}
|