//Define the Simulator Object.
//The Simulator class (object) stores the input data that is used by the Game class (object).
public class Simulator : IEnumerable
{
private string[] _moves = { "5", "3", "1", "6", "9", "U-2", "9", "6", "4", "2", "7", "8", "Q" };
public IEnumerator GetEnumerator()
{
foreach (string element in _moves)
{
yield return element;
}
}
}