mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 06:32:36 +08:00
23 lines
534 B
C#
23 lines
534 B
C#
using osu.Framework.Configuration;
|
|
using osu.Framework.Platform;
|
|
|
|
namespace Symcol.Rulesets.Core
|
|
{
|
|
public class SymcolConfigManager : IniConfigManager<SymcolSetting>
|
|
{
|
|
protected override string Filename => "symcol.ini";
|
|
|
|
public SymcolConfigManager(Storage storage) : base(storage) { }
|
|
|
|
protected override void InitialiseDefaults()
|
|
{
|
|
Set(SymcolSetting.PlayerColor, "#ffffff");
|
|
}
|
|
}
|
|
|
|
public enum SymcolSetting
|
|
{
|
|
PlayerColor
|
|
}
|
|
}
|