mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 18:19:54 +08:00
26 lines
597 B
C#
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
|
|
}
|
|
}
|