2021-06-11 22:49:14 +08: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.
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
{
|
|
|
|
public enum HoverSampleSet
|
|
|
|
{
|
|
|
|
[Description("default")]
|
|
|
|
Default,
|
|
|
|
|
2021-07-30 20:23:49 +08:00
|
|
|
[Description("submit")]
|
|
|
|
Submit,
|
2021-07-21 21:00:13 +08:00
|
|
|
|
2021-06-11 22:49:14 +08:00
|
|
|
[Description("button")]
|
|
|
|
Button,
|
|
|
|
|
|
|
|
[Description("toolbar")]
|
|
|
|
Toolbar,
|
|
|
|
|
2021-06-18 16:26:28 +08:00
|
|
|
[Description("tabselect")]
|
|
|
|
TabSelect,
|
|
|
|
|
2021-06-18 15:08:14 +08:00
|
|
|
[Description("scrolltotop")]
|
|
|
|
ScrollToTop
|
2021-06-11 22:49:14 +08:00
|
|
|
}
|
|
|
|
}
|