mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
make ignore properties protected virtual get-only in base
This commit is contained in:
@ -14,14 +14,9 @@ namespace osu.Game.IO
|
||||
/// </summary>
|
||||
public abstract class MigratableStorage : WrappedStorage
|
||||
{
|
||||
internal static readonly string[] IGNORE_DIRECTORIES = { "cache" };
|
||||
|
||||
internal static readonly string[] IGNORE_FILES =
|
||||
{
|
||||
"framework.ini",
|
||||
"storage.ini"
|
||||
};
|
||||
|
||||
internal virtual string[] IGNORE_DIRECTORIES { get; }
|
||||
internal virtual string[] IGNORE_FILES { get; }
|
||||
|
||||
protected MigratableStorage(Storage storage, string subPath = null)
|
||||
: base(storage, subPath)
|
||||
{
|
||||
|
Reference in New Issue
Block a user