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

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;