1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 08:47:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuButton.cs

19 lines
506 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-02-07 12:52:19 +08:00
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Graphics.UserInterface
{
/// <summary>
/// A button with added default sound effects.
/// </summary>
public class OsuButton : Button
2017-02-07 12:52:19 +08:00
{
public OsuButton()
{
Add(new HoverClickSounds(HoverSampleSet.Loud));
}
2017-02-07 12:52:19 +08:00
}
}