1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-19 11:03:21 +08:00

Make OsuButton non-abstract again

This commit is contained in:
Dean Herbert 2019-06-18 14:16:54 +09:00
parent 0d4c6d2cbc
commit 07ea0f9755

View File

@ -17,11 +17,11 @@ namespace osu.Game.Graphics.UserInterface
/// <summary>
/// A button with added default sound effects.
/// </summary>
public abstract class OsuButton : Button
public class OsuButton : Button
{
private Box hover;
protected OsuButton()
public OsuButton()
{
Height = 40;