mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Add XMLDoc to protected members.
This commit is contained in:
@ -32,8 +32,16 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|||||||
/// <param name="directory">The selected directory</param>
|
/// <param name="directory">The selected directory</param>
|
||||||
protected abstract void OnSelection(DirectoryInfo directory);
|
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;
|
protected virtual bool IsValidDirectory(DirectoryInfo info) => true;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The path at which to start selection from.
|
||||||
|
/// </summary>
|
||||||
protected virtual DirectoryInfo InitialPath => null;
|
protected virtual DirectoryInfo InitialPath => null;
|
||||||
|
|
||||||
public override bool AllowExternalScreenChange => false;
|
public override bool AllowExternalScreenChange => false;
|
||||||
|
Reference in New Issue
Block a user