mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:47:25 +08:00
26 lines
522 B
C#
26 lines
522 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.
|
|
|
|
using System.ComponentModel;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public enum HoverSampleSet
|
|
{
|
|
[Description("default")]
|
|
Default,
|
|
|
|
[Description("button")]
|
|
Button,
|
|
|
|
[Description("softer")]
|
|
Soft,
|
|
|
|
[Description("toolbar")]
|
|
Toolbar,
|
|
|
|
[Description("songselect")]
|
|
SongSelect
|
|
}
|
|
}
|