mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Add xmldoc to Filter
to explain usage
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user