Added settings
This commit is contained in:
parent
6d607b6d02
commit
651aeb407b
4 changed files with 68 additions and 32 deletions
20
Sledgemapper/Settings.cs
Normal file
20
Sledgemapper/Settings.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue