mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 11:27:44 +08:00
20 lines
741 B
C#
20 lines
741 B
C#
// 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.Configuration;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
/// <summary>
|
|
/// Read-only interface for the <see cref="OsuGame"/> beatmap.
|
|
/// </summary>
|
|
public interface IBindableBeatmap : IBindable<WorkingBeatmap>
|
|
{
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
IBindableBeatmap GetBoundCopy();
|
|
}
|
|
}
|