1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:47:25 +08:00
osu-lazer/osu.Game/Skinning/DefaultSkin.cs

35 lines
1.0 KiB
C#
Raw Normal View History

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;
using osu.Framework.Graphics.Textures;
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
public override Texture GetTexture(string componentName) => null;
2018-03-20 15:26:36 +08:00
public override SampleChannel GetSample(string sampleName) => null;
2018-02-22 16:16:48 +08:00
}
}