Merge pull request #5052 from peppy/make-osu-button-instantiable

Make OsuButton non-abstract again
This commit is contained in:
Dan Balasescu 2019-06-18 18:29:35 +09:00 committed by GitHub
commit 9776494c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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;