mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
28 lines
700 B
C#
28 lines
700 B
C#
// 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;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class DefaultSkin : Skin
|
|
{
|
|
public DefaultSkin()
|
|
: base(SkinInfo.Default)
|
|
{
|
|
Configuration = new SkinConfiguration();
|
|
}
|
|
|
|
public override Drawable GetDrawableComponent(string componentName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override SampleChannel GetSample(string sampleName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|