osu/osu.Game/Tests/Beatmaps/TestWorkingBeatmap.cs

31 lines
917 B
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Framework.Audio.Track;
using osu.Framework.Graphics.Textures;
using osu.Game.Beatmaps;
namespace osu.Game.Tests.Beatmaps
{
public class TestWorkingBeatmap : WorkingBeatmap
{
private readonly IBeatmap beatmap;
/// <summary>
/// Create an instance which provides the <see cref="IBeatmap"/> when requested.
/// </summary>
/// <param name="beatmap">The beatmap</param>
public TestWorkingBeatmap(IBeatmap beatmap)
: base(beatmap.BeatmapInfo, null)
2018-04-13 09:19:50 +00:00
{
this.beatmap = beatmap;
}
2018-04-19 11:44:38 +00:00
protected override IBeatmap GetBeatmap() => beatmap;
protected override Texture GetBackground() => null;
2019-02-19 03:35:52 +00:00
protected override Track GetTrack() => null;
2018-04-13 09:19:50 +00:00
}
}