Added settings

This commit is contained in:
Michele Scandura 2020-12-02 10:55:34 +00:00
parent 6d607b6d02
commit 651aeb407b
4 changed files with 68 additions and 32 deletions

20
Sledgemapper/Settings.cs Normal file
View file

@ -0,0 +1,20 @@
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);
}
}
}