mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:07:25 +08:00
30 lines
684 B
C#
30 lines
684 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.Skinning
|
|
{
|
|
public enum GameplaySkinSamples
|
|
{
|
|
// legacy
|
|
Applause,
|
|
|
|
// results screen
|
|
ResultScoreTick,
|
|
ResultBadgeTick,
|
|
ResultBadgeTickMax,
|
|
ResultSwooshUp,
|
|
ResultRank_D,
|
|
ResultRank_B,
|
|
ResultRank_C,
|
|
ResultRank_A,
|
|
ResultRank_S,
|
|
ResultRank_SS,
|
|
ResultApplause_D,
|
|
ResultApplause_B,
|
|
ResultApplause_C,
|
|
ResultApplause_A,
|
|
ResultApplause_S,
|
|
ResultApplause_SS
|
|
}
|
|
}
|