mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 00:20:25 +08:00
24 lines
529 B
C#
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
|
|
}
|
|
}
|