2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
2019-08-31 11:33:29 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// An empty skin configuration.
|
|
|
|
|
/// </summary>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public class SkinConfiguration : IHasComboColours, IHasCustomColours
|
|
|
|
|
{
|
|
|
|
|
public readonly SkinInfo SkinInfo = new SkinInfo();
|
|
|
|
|
|
2019-08-31 11:33:29 +08:00
|
|
|
|
public List<Color4> ComboColours { get; set; } = new List<Color4>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
|
2018-09-27 16:27:24 +08:00
|
|
|
|
|
2019-09-03 16:57:34 +08:00
|
|
|
|
public readonly Dictionary<string, string> ConfigDictionary = new Dictionary<string, string>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|