mirror of
https://github.com/osukey/osukey.git
synced 2025-07-04 01:40:02 +09:00
Move static properties to parent class and inherit OsuStorage from it
This commit is contained in:
@ -14,9 +14,13 @@ namespace osu.Game.IO
|
||||
public abstract class MigratableStorage : WrappedStorage
|
||||
{
|
||||
|
||||
virtual protected string[] IGNORE_DIRECTORIES { get; set; } = Array.Empty<string>();
|
||||
internal static readonly string[] IGNORE_DIRECTORIES = { "cache" };
|
||||
|
||||
virtual protected string[] IGNORE_FILES { get; set; } = Array.Empty<string>();
|
||||
internal static readonly string[] IGNORE_FILES =
|
||||
{
|
||||
"framework.ini",
|
||||
"storage.ini"
|
||||
};
|
||||
|
||||
public MigratableStorage(Storage storage, string subPath = null)
|
||||
: base(storage, subPath)
|
||||
|
Reference in New Issue
Block a user