Merge pull request #4909 from peppy/abstract-osu-button

Mark OsuButton as abstract
This commit is contained in:
Dan Balasescu
2019-06-04 22:23:53 +09:00
committed by GitHub

View File

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