mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 02:43:19 +08:00
Add xmldoc to newly exposed methods
This commit is contained in:
parent
5abf271b56
commit
6c0bd13308
@ -916,6 +916,9 @@ namespace osu.Game.Screens.Select
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Request to delete the current beatmap.
|
||||
/// </summary>
|
||||
public void DeleteBeatmap()
|
||||
{
|
||||
if (Beatmap.Value.BeatmapSetInfo == null) return;
|
||||
@ -923,6 +926,9 @@ namespace osu.Game.Screens.Select
|
||||
dialogOverlay?.Push(new BeatmapDeleteDialog(Beatmap.Value.BeatmapSetInfo));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Request to clear the scores of the current beatmap.
|
||||
/// </summary>
|
||||
public void ClearScores()
|
||||
{
|
||||
if (Beatmap.Value.BeatmapInfo == null) return;
|
||||
|
Loading…
Reference in New Issue
Block a user