2019-09-03 16:57:34 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2019-12-06 21:32:31 +08:00
|
|
|
using System;
|
2019-09-03 16:57:34 +08:00
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2019-12-06 21:32:31 +08:00
|
|
|
public class SkinConfigManager<TLookup> : ConfigManager<TLookup> where TLookup : struct, Enum
|
2019-09-03 16:57:34 +08:00
|
|
|
{
|
|
|
|
protected override void PerformLoad()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool PerformSave() => false;
|
|
|
|
}
|
|
|
|
}
|