You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SCJMapper-V2/Joystick/MyColors.cs

17 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace SCJMapper_V2
{
/// <summary>
/// Provide the colors used
/// </summary>
class MyColors
{
static public Color[] JColor = { Color.LightGreen, Color.LightBlue, Color.Khaki, Color.LightSalmon, Color.Beige, Color.Yellow, Color.Plum, Color.Lavender };
static public Color DirtyColor = Color.Tomato;
}
}