2020-05-04 16:01:05 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-04 16:01:05 +08:00
|
|
|
using osu.Framework.Configuration;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
{
|
|
|
|
public class StorageConfigManager : IniConfigManager<StorageConfig>
|
|
|
|
{
|
|
|
|
protected override string Filename => "storage.ini";
|
|
|
|
|
|
|
|
public StorageConfigManager(Storage storage)
|
|
|
|
: base(storage)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void InitialiseDefaults()
|
|
|
|
{
|
|
|
|
base.InitialiseDefaults();
|
|
|
|
|
2021-03-17 15:10:16 +08:00
|
|
|
SetDefault(StorageConfig.FullPath, string.Empty);
|
2020-05-04 16:01:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum StorageConfig
|
|
|
|
{
|
|
|
|
FullPath,
|
|
|
|
}
|
|
|
|
}
|