MasterMind/Master Mind/Values.cs
AUnicornWithNoLife 0cb463fd0f init
2023-05-25 12:33:44 +01:00

22 lines
441 B
C#

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
};
}
}