1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-17 22:17:25 +08:00

Mark OsuButton as abstract

Not being used directly, so we probably shouldn't support it for now.
This commit is contained in:
Dean Herbert 2019-06-04 22:12:55 +09:00
parent 6ba4dde983
commit 2e3d392a9f

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;