2019-08-30 05:39:02 +00: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
|
|
|
|
{
|
2024-08-22 09:42:38 +00:00
|
|
|
public class ManiaSkinComponentLookup : SkinComponentLookup<ManiaSkinComponents>
|
2019-08-30 05:39:02 +00:00
|
|
|
{
|
2020-04-03 02:55:52 +00:00
|
|
|
/// <summary>
|
2022-11-09 07:04:56 +00:00
|
|
|
/// Creates a new <see cref="ManiaSkinComponentLookup"/>.
|
2020-04-03 02:55:52 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="component">The component.</param>
|
2022-11-09 07:04:56 +00:00
|
|
|
public ManiaSkinComponentLookup(ManiaSkinComponents component)
|
2019-08-30 05:39:02 +00:00
|
|
|
: base(component)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 14:18:38 +00:00
|
|
|
|
|
|
|
public enum ManiaSkinComponents
|
|
|
|
{
|
2020-03-31 06:24:13 +00:00
|
|
|
ColumnBackground,
|
|
|
|
HitTarget,
|
2020-03-31 06:29:25 +00:00
|
|
|
KeyArea,
|
|
|
|
Note,
|
|
|
|
HoldNoteHead,
|
|
|
|
HoldNoteTail,
|
2020-03-31 07:42:35 +00:00
|
|
|
HoldNoteBody,
|
2020-04-08 06:08:13 +00:00
|
|
|
HitExplosion,
|
2020-04-08 07:20:26 +00:00
|
|
|
StageBackground,
|
|
|
|
StageForeground,
|
2023-08-15 04:33:49 +00:00
|
|
|
BarLine
|
2020-03-30 14:18:38 +00:00
|
|
|
}
|
2019-08-30 05:39:02 +00:00
|
|
|
}
|