1
0
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:
Joseph Madamba 2023-09-04 00:21:48 -07:00
parent 5abf271b56
commit 6c0bd13308
No known key found for this signature in database
GPG Key ID: 8B746C7BDDF0BD76

View File

@ -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;