osu/osu.Game/Graphics/UserInterface/HoverSampleSet.cs

29 lines
581 B
C#
Raw Normal View History

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