1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 04:13:11 +08:00

Add missing xmldoc

This commit is contained in:
Dean Herbert 2022-06-30 16:51:31 +09:00
parent e34c2f0aca
commit ef42c6ecdf

View File

@ -28,6 +28,9 @@ namespace osu.Game.Beatmaps
/// <param name="beatmapInfo">The beatmap info to invalidate any cached entries for.</param> /// <param name="beatmapInfo">The beatmap info to invalidate any cached entries for.</param>
void Invalidate(BeatmapInfo beatmapInfo); void Invalidate(BeatmapInfo beatmapInfo);
/// <summary>
/// Fired whenever a <see cref="WorkingBeatmap"/> is invalidated.
/// </summary>
event Action<WorkingBeatmap> OnInvalidated; event Action<WorkingBeatmap> OnInvalidated;
} }
} }