1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:52:55 +08:00

Remove no longer used BeatmapSkin

This commit is contained in:
Salman Ahmed 2021-05-24 12:28:06 +03:00
parent afb33f1641
commit 7792efb154

View File

@ -1,32 +0,0 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics.OpenGL.Textures;
using osu.Framework.Graphics.Textures;
using osu.Game.Audio;
using osu.Game.Beatmaps;
namespace osu.Game.Skinning
{
/// <summary>
/// An empty implementation of a beatmap skin, serves as a temporary default for <see cref="WorkingBeatmap"/>s.
/// </summary>
/// <remarks>
/// This should be removed once <see cref="Skin"/> becomes instantiable or a new skin type for osu!lazer beatmaps is defined.
/// </remarks>
public class BeatmapSkin : Skin
{
public BeatmapSkin(BeatmapInfo beatmap)
: base(BeatmapSkinExtensions.CreateSkinInfo(beatmap), null)
{
}
public override Texture GetTexture(string componentName, WrapMode wrapModeS, WrapMode wrapModeT) => null;
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup) => null;
public override ISample GetSample(ISampleInfo sampleInfo) => null;
}
}