1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:37:20 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
731 B
C#
Raw Normal View History

2021-06-11 23:49:14 +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
2021-06-11 23:49:14 +09:00
using System.ComponentModel;
namespace osu.Game.Graphics.UserInterface
{
public enum HoverSampleSet
{
[Description("default")]
Default,
[Description("button")]
Button,
[Description("button-sidebar")]
ButtonSidebar,
2021-06-11 23:49:14 +09:00
[Description("toolbar")]
Toolbar,
2021-06-18 17:26:28 +09:00
[Description("tabselect")]
TabSelect,
2021-06-18 16:08:14 +09:00
[Description("scrolltotop")]
ScrollToTop,
[Description("dialog-cancel")]
DialogCancel,
[Description("dialog-ok")]
DialogOk
2021-06-11 23:49:14 +09:00
}
}