// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics.UserInterface; namespace osu.Game.Graphics.UserInterface { /// /// A button with added default sound effects. /// public class OsuButton : Button { public OsuButton() { Add(new HoverClickSounds(HoverSampleSet.Loud)); } } }