2019-08-30 14:39:02 +09: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.
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2019-08-30 14:39:02 +09:00
|
|
|
namespace osu.Game.Rulesets.Osu
|
|
|
|
{
|
|
|
|
public enum OsuSkinComponents
|
|
|
|
{
|
|
|
|
HitCircle,
|
|
|
|
FollowPoint,
|
|
|
|
Cursor,
|
2019-09-09 17:53:51 +09:00
|
|
|
CursorTrail,
|
2021-09-10 00:29:05 +02:00
|
|
|
CursorParticles,
|
2019-08-30 14:39:02 +09:00
|
|
|
SliderScorePoint,
|
|
|
|
ReverseArrow,
|
|
|
|
HitCircleText,
|
2020-03-28 13:39:08 +09:00
|
|
|
SliderHeadHitCircle,
|
2020-10-02 13:41:22 +09:00
|
|
|
SliderTailHitCircle,
|
2019-08-30 14:39:02 +09:00
|
|
|
SliderFollowCircle,
|
2019-12-17 18:16:25 +09:00
|
|
|
SliderBall,
|
|
|
|
SliderBody,
|
2021-03-02 21:43:32 +03:00
|
|
|
SpinnerBody,
|
2022-10-05 19:11:38 -07:00
|
|
|
CursorSmoke,
|
2021-09-16 19:35:15 +09:00
|
|
|
ApproachCircle,
|
2019-08-30 14:39:02 +09:00
|
|
|
}
|
|
|
|
}
|