22 lines
441 B
C#
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
|
|
};
|
|
}
|
|
}
|