1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 15:40:14 +08:00
Files
osu-lazer/Symcol.Rulesets.Core/Skinning/SkinIniReader.cs
T
2018-03-18 22:43:16 -04:00

26 lines
597 B
C#

using osu.Framework.Configuration;
using osu.Framework.Platform;
namespace Symcol.Rulesets.Core.Skinning
{
public class SkinConfigReader<T> : IniConfigManager<T>
where T : struct
{
protected override string Filename => @"skin.ini";
public SkinConfigReader(Storage storage) : base(storage) { }
protected override bool PerformSave() { return false; }
}
//wildly incomplete
public enum ClassicIniParameters
{
Name,
Author,
CursorRotate,
CursorExpand,
CursorCentre
}
}