mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 07:27:19 +09:00
Add XMLDoc to protected members.
This commit is contained in:
parent
eee3cd7c57
commit
09a5b9c872
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user