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