1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 06:32:56 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/TaikoSkinComponents.cs
Nathan Du 4fd8a4dc5a Merge taiko swell components
Per <https://github.com/ppy/osu/pull/21601/files#r1064167756>, taking a
variation of the "Make all swell main pieces implement
ISkinnableSwellPart" path. Should clean the interface up enough for
further refactors.
2025-01-31 16:55:39 +08:00

28 lines
644 B
C#

// 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.
namespace osu.Game.Rulesets.Taiko
{
public enum TaikoSkinComponents
{
InputDrum,
CentreHit,
RimHit,
DrumRollBody,
DrumRollTick,
SwellBody,
HitTarget,
PlayfieldBackgroundLeft,
PlayfieldBackgroundRight,
BarLine,
TaikoExplosionMiss,
TaikoExplosionOk,
TaikoExplosionGreat,
TaikoExplosionKiai,
Scroller,
Mascot,
KiaiGlow,
DrumSamplePlayer
}
}