Implement config persistence through BasicStorage

This commit is contained in:
Drew DeVault
2016-10-31 12:44:20 -06:00
parent 6f16a6a6d4
commit 2aaff01675
2 changed files with 14 additions and 1 deletions

View File

@ -2,6 +2,7 @@
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Framework.Platform;
using osu.Game.GameModes.Play;
using osu.Game.Online.API;
@ -25,6 +26,10 @@ namespace osu.Game.Configuration
Set(OsuConfig.VolumeMusic, 1.0, 0, 1);
Set(OsuConfig.VolumeEffect, 1.0, 0, 1);
}
public OsuConfigManager(BasicStorage storage) : base(storage)
{
}
}
enum OsuConfig