SCJMapper-V2/Joystick/MyColors.cs

17 lines
421 B
C#
Raw Normal View History

2014-06-22 12:31:57 +00:00
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;
}
}