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.
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
|
|
|
{
|
|
|
|
public enum OsuSkinComponents
|
|
|
|
{
|
|
|
|
HitCircle,
|
|
|
|
FollowPoint,
|
|
|
|
Cursor,
|
2019-09-09 16:53:51 +08:00
|
|
|
CursorTrail,
|
2019-08-30 13:39:02 +08:00
|
|
|
SliderScorePoint,
|
|
|
|
ApproachCircle,
|
|
|
|
ReverseArrow,
|
|
|
|
HitCircleText,
|
2020-03-28 12:39:08 +08:00
|
|
|
SliderHeadHitCircle,
|
2020-10-02 12:41:22 +08:00
|
|
|
SliderTailHitCircle,
|
2019-08-30 13:39:02 +08:00
|
|
|
SliderFollowCircle,
|
2019-12-17 17:16:25 +08:00
|
|
|
SliderBall,
|
|
|
|
SliderBody,
|
2021-03-03 02:43:32 +08:00
|
|
|
SpinnerBody,
|
2019-08-30 13:39:02 +08:00
|
|
|
}
|
|
|
|
}
|