1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 00:37:18 +08:00

Add XMLDoc to protected members.

This commit is contained in:
Lucas A 2021-05-13 16:28:03 +02:00
parent eee3cd7c57
commit 09a5b9c872

View File

@ -32,8 +32,16 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance
/// <param name="directory">The selected directory</param>
protected abstract void OnSelection(DirectoryInfo directory);
/// <summary>
/// Whether the current directory is considered to be valid and can be selected.
/// </summary>
/// <param name="info">The current directory.</param>
/// <returns>Whether the selected directory is considered valid.</returns>
protected virtual bool IsValidDirectory(DirectoryInfo info) => true;
/// <summary>
/// The path at which to start selection from.
/// </summary>
protected virtual DirectoryInfo InitialPath => null;
public override bool AllowExternalScreenChange => false;