1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 00:20:25 +08:00
Files
osu-lazer/osu.Game.Rulesets.Shape/Settings/ShapeConfigManager.cs
T
2018-03-19 12:07:10 -04:00

24 lines
529 B
C#

using osu.Framework.Configuration;
using osu.Framework.Platform;
namespace osu.Game.Rulesets.Shape.Settings
{
public class ShapeConfigManager : IniConfigManager<ShapeSetting>
{
protected override string Filename => @"shape.ini";
public ShapeConfigManager(Storage storage) : base(storage) { }
protected override void InitialiseDefaults()
{
Set(ShapeSetting.Skin, "default");
}
}
public enum ShapeSetting
{
Skin
}
}