2019-01-24 17:43:03 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
public class SkinConfiguration : IHasComboColours, IHasCustomColours
|
|
|
|
|
{
|
|
|
|
|
public readonly SkinInfo SkinInfo = new SkinInfo();
|
|
|
|
|
|
2019-02-05 17:50:32 +09:00
|
|
|
|
public List<Color4> ComboColours { get; set; } = new List<Color4>
|
|
|
|
|
{
|
|
|
|
|
new Color4(17, 136, 170, 255),
|
|
|
|
|
new Color4(102, 136, 0, 255),
|
|
|
|
|
new Color4(204, 102, 0, 255),
|
|
|
|
|
new Color4(121, 9, 13, 255)
|
|
|
|
|
};
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
|
2018-09-27 17:27:24 +09:00
|
|
|
|
|
|
|
|
|
public string HitCircleFont { get; set; } = "default";
|
2019-02-15 21:16:54 +09:00
|
|
|
|
|
2019-02-15 21:03:06 +09:00
|
|
|
|
public int HitCircleOverlap { get; set; }
|
2018-12-07 22:22:40 +01:00
|
|
|
|
|
2019-03-16 12:41:03 +02:00
|
|
|
|
public float? SliderBorderSize { get; set; }
|
2019-03-14 21:57:39 +02:00
|
|
|
|
|
2018-12-07 23:52:57 +01:00
|
|
|
|
public bool? CursorExpand { get; set; } = true;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|