mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 06:27:24 +09:00
18 lines
414 B
C#
18 lines
414 B
C#
using osu.Framework.Audio.Sample;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class DefaultSkin : Skin
|
|
{
|
|
public DefaultSkin()
|
|
: base(SkinInfo.Default)
|
|
{
|
|
}
|
|
|
|
public override Drawable GetDrawableComponent(string componentName) => null;
|
|
|
|
public override SampleChannel GetSample(string sampleName) => null;
|
|
}
|
|
}
|