2019-08-30 13:39:02 +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.
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2019-09-03 16:57:34 +08:00
|
|
|
public class GameplaySkinComponent<T> : ISkinComponent
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
|
|
|
public readonly T Component;
|
|
|
|
|
2019-08-30 14:10:11 +08:00
|
|
|
public GameplaySkinComponent(T component)
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
2019-08-30 14:29:44 +08:00
|
|
|
Component = component;
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual string RulesetPrefix => string.Empty;
|
|
|
|
protected virtual string ComponentName => Component.ToString();
|
|
|
|
|
|
|
|
public string LookupName =>
|
2020-10-16 17:52:29 +08:00
|
|
|
string.Join('/', new[] { "Gameplay", RulesetPrefix, ComponentName }.Where(s => !string.IsNullOrEmpty(s)));
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
|
|
|
}
|