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.
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko
|
|
|
|
{
|
|
|
|
public enum TaikoSkinComponents
|
|
|
|
{
|
2020-04-03 09:23:03 +00:00
|
|
|
InputDrum,
|
2020-04-11 04:41:14 +00:00
|
|
|
CentreHit,
|
2020-04-15 07:54:50 +00:00
|
|
|
RimHit,
|
|
|
|
DrumRollBody,
|
|
|
|
DrumRollTick,
|
2020-04-21 10:00:34 +00:00
|
|
|
Swell,
|
2020-04-23 03:33:34 +00:00
|
|
|
HitTarget,
|
|
|
|
PlayfieldBackgroundLeft,
|
2020-04-23 05:32:48 +00:00
|
|
|
PlayfieldBackgroundRight,
|
2020-04-27 13:22:32 +00:00
|
|
|
BarLine,
|
|
|
|
TaikoExplosionMiss,
|
|
|
|
TaikoExplosionGood,
|
|
|
|
TaikoExplosionGreat,
|
2019-08-30 05:39:02 +00:00
|
|
|
}
|
|
|
|
}
|