2019-09-03 16:57:34 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
2019-09-03 16:57:34 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2019-08-23 19:32:43 +08:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
public class DefaultSkin : Skin
|
|
|
|
|
{
|
|
|
|
|
public DefaultSkin()
|
|
|
|
|
: base(SkinInfo.Default)
|
|
|
|
|
{
|
2019-08-31 11:33:29 +08:00
|
|
|
|
Configuration = new DefaultSkinConfiguration();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
public override Drawable GetDrawableComponent(ISkinComponent component) => null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public override Texture GetTexture(string componentName) => null;
|
|
|
|
|
|
2019-08-23 19:32:43 +08:00
|
|
|
|
public override SampleChannel GetSample(ISampleInfo sampleInfo) => null;
|
2019-09-03 16:57:34 +08:00
|
|
|
|
|
|
|
|
|
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|