1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 07:27:33 +08:00
osu-lazer/osu.Game/Skinning/DefaultSkin.cs

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