2018-02-23 11:35:25 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2018-02-22 16:16:48 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-03-20 15:26:36 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2018-02-22 16:16:48 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
public class DefaultSkin : Skin
|
|
|
|
|
{
|
|
|
|
|
public DefaultSkin()
|
|
|
|
|
: base(SkinInfo.Default)
|
|
|
|
|
{
|
2018-03-20 15:26:36 +08:00
|
|
|
|
Configuration = new SkinConfiguration
|
|
|
|
|
{
|
|
|
|
|
ComboColours =
|
|
|
|
|
{
|
|
|
|
|
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-02-22 16:16:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-20 15:26:36 +08:00
|
|
|
|
public override Drawable GetDrawableComponent(string componentName) => null;
|
2018-02-22 16:16:48 +08:00
|
|
|
|
|
2018-03-20 15:26:36 +08:00
|
|
|
|
public override SampleChannel GetSample(string sampleName) => null;
|
2018-02-22 16:16:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|