From 09a5b9c872eaee74470f9e3cbe9c3e789715e882 Mon Sep 17 00:00:00 2001 From: Lucas A Date: Thu, 13 May 2021 16:28:03 +0200 Subject: [PATCH] Add XMLDoc to protected members. --- .../Sections/Maintenance/DirectorySelectScreen.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/osu.Game/Overlays/Settings/Sections/Maintenance/DirectorySelectScreen.cs b/osu.Game/Overlays/Settings/Sections/Maintenance/DirectorySelectScreen.cs index 582d14fbb6..c676e1391d 100644 --- a/osu.Game/Overlays/Settings/Sections/Maintenance/DirectorySelectScreen.cs +++ b/osu.Game/Overlays/Settings/Sections/Maintenance/DirectorySelectScreen.cs @@ -32,8 +32,16 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance /// The selected directory protected abstract void OnSelection(DirectoryInfo directory); + /// + /// Whether the current directory is considered to be valid and can be selected. + /// + /// The current directory. + /// Whether the selected directory is considered valid. protected virtual bool IsValidDirectory(DirectoryInfo info) => true; + /// + /// The path at which to start selection from. + /// protected virtual DirectoryInfo InitialPath => null; public override bool AllowExternalScreenChange => false;