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