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 osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania
|
|
|
|
{
|
2022-11-09 15:04:56 +08:00
|
|
|
public class ManiaSkinComponentLookup : GameplaySkinComponentLookup<ManiaSkinComponents>
|
2019-08-30 13:39:02 +08:00
|
|
|
{
|
2020-04-03 10:55:52 +08:00
|
|
|
/// <summary>
|
2022-11-09 15:04:56 +08:00
|
|
|
/// Creates a new <see cref="ManiaSkinComponentLookup"/>.
|
2020-04-03 10:55:52 +08:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="component">The component.</param>
|
2022-11-09 15:04:56 +08:00
|
|
|
public ManiaSkinComponentLookup(ManiaSkinComponents component)
|
2019-08-30 13:39:02 +08:00
|
|
|
: base(component)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override string RulesetPrefix => ManiaRuleset.SHORT_NAME;
|
|
|
|
|
2022-06-20 20:39:47 +08:00
|
|
|
protected override string ComponentName => Component.ToString().ToLowerInvariant();
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
2020-03-30 22:18:38 +08:00
|
|
|
|
|
|
|
public enum ManiaSkinComponents
|
|
|
|
{
|
2020-03-31 14:24:13 +08:00
|
|
|
ColumnBackground,
|
|
|
|
HitTarget,
|
2020-03-31 14:29:25 +08:00
|
|
|
KeyArea,
|
|
|
|
Note,
|
|
|
|
HoldNoteHead,
|
|
|
|
HoldNoteTail,
|
2020-03-31 15:42:35 +08:00
|
|
|
HoldNoteBody,
|
2020-04-08 14:08:13 +08:00
|
|
|
HitExplosion,
|
2020-04-08 15:20:26 +08:00
|
|
|
StageBackground,
|
|
|
|
StageForeground,
|
2020-03-30 22:18:38 +08:00
|
|
|
}
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|