1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 20:22:58 +08:00

Add xmldoc to Filter to explain usage

This commit is contained in:
Bartłomiej Dach 2022-02-28 21:39:21 +01:00
parent 6cc972aa6a
commit e8701f46f1
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -33,6 +33,11 @@ namespace osu.Game.Overlays.Mods
{
private Func<Mod, bool>? filter;
/// <summary>
/// Function determining whether each mod in the column should be displayed.
/// A return value of <see langword="true"/> means that the mod is not filtered and therefore its corresponding panel should be displayed.
/// A return value of <see langword="false"/> means that the mod is filtered out and therefore its corresponding panel should be hidden.
/// </summary>
public Func<Mod, bool>? Filter
{
get => filter;