1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 01:07:25 +08:00
osu-lazer/osu.Game/Skinning/GameplaySkinSamples.cs
2021-06-03 18:35:27 +09:00

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
}
}