osu/osu.Game/Skinning/DefaultSkin.cs

27 lines
646 B
C#
Raw Normal View History

2018-02-23 03:35:25 +00: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 08:16:48 +00:00
using osu.Framework.Graphics;
namespace osu.Game.Skinning
{
public class DefaultSkin : Skin
{
public DefaultSkin()
: base(SkinInfo.Default)
{
}
2018-02-23 03:35:25 +00:00
public override Drawable GetDrawableComponent(string componentName)
{
return null;
}
2018-02-22 08:16:48 +00:00
2018-02-23 03:35:25 +00:00
public override SampleChannel GetSample(string sampleName)
{
return null;
}
2018-02-22 08:16:48 +00:00
}
}