1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 17:27:39 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/HoverSampleSet.cs

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 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2021-06-11 22:49:14 +08: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 22:49:14 +08:00
[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,
[Description("dialog-cancel")]
DialogCancel,
[Description("dialog-ok")]
DialogOk
2021-06-11 22:49:14 +08:00
}
}