20 lines
510 B
C#
20 lines
510 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace Sledgemapper
|
|
{
|
|
public class Settings
|
|
{
|
|
public Color BackgroundColor { get; set; }
|
|
public Color OverlayTintColor { get; set; }
|
|
public Color GridColor { get; set; }
|
|
public Color NoteColor { get; set; }
|
|
|
|
public Settings()
|
|
{
|
|
BackgroundColor=Color.LightGray;
|
|
GridColor=Color.Black;
|
|
NoteColor=Color.DarkRed;
|
|
OverlayTintColor = new Color(24, 118, 157);
|
|
}
|
|
}
|
|
}
|