Minor refactoring

This commit is contained in:
Dean Herbert
2022-11-03 20:29:27 +09:00
parent f75c4ba95f
commit f6c376c090
2 changed files with 4 additions and 2 deletions

View File

@ -21,9 +21,11 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public class HoverClickSounds : HoverSounds
{
public Bindable<bool> Enabled = new Bindable<bool>(true);
private Sample sampleClick;
private Sample sampleClickDisabled;
public Bindable<bool> Enabled = new Bindable<bool>(true);
private readonly MouseButton[] buttons;
/// <summary>