MasterMind/Master Mind/Values.cs

22 lines
441 B
C#
Raw Normal View History

2023-05-25 11:33:44 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Master_Mind
{
internal class Values
{
public static ConsoleColor[] colors =
{
ConsoleColor.Red,
ConsoleColor.Yellow,
ConsoleColor.Green,
ConsoleColor.Cyan,
ConsoleColor.Blue,
ConsoleColor.Magenta
};
}
}