mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
make migrate public abstract in base and override
This commit is contained in:
@ -16,12 +16,14 @@ namespace osu.Game.IO
|
||||
{
|
||||
internal virtual string[] IGNORE_DIRECTORIES { get; }
|
||||
internal virtual string[] IGNORE_FILES { get; }
|
||||
|
||||
|
||||
protected MigratableStorage(Storage storage, string subPath = null)
|
||||
: base(storage, subPath)
|
||||
{
|
||||
}
|
||||
|
||||
abstract public void Migrate(string newLocation);
|
||||
|
||||
protected void DeleteRecursive(DirectoryInfo target, bool topLevelExcludes = true)
|
||||
{
|
||||
foreach (System.IO.FileInfo fi in target.GetFiles())
|
||||
|
Reference in New Issue
Block a user