2018-05-23 16:37:39 +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.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Read-only interface for the <see cref="OsuGame"/> beatmap.
|
|
|
|
|
/// </summary>
|
2018-06-06 19:16:20 +08:00
|
|
|
|
public interface IBindableBeatmap : IBindable<WorkingBeatmap>
|
2018-05-23 16:37:39 +08:00
|
|
|
|
{
|
2018-05-24 11:42:58 +08:00
|
|
|
|
/// <summary>
|
2018-06-06 19:16:20 +08:00
|
|
|
|
/// Retrieve a new <see cref="IBindableBeatmap"/> instance weakly bound to this <see cref="IBindableBeatmap"/>.
|
|
|
|
|
/// If you are further binding to events of the retrieved <see cref="IBindableBeatmap"/>, ensure a local reference is held.
|
2018-05-24 11:42:58 +08:00
|
|
|
|
/// </summary>
|
2018-06-06 19:16:20 +08:00
|
|
|
|
IBindableBeatmap GetBoundCopy();
|
2018-05-23 16:37:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|