2019-11-08 16:00:47 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-07-13 16:34:33 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-11-08 16:00:47 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
{
|
|
|
|
public partial class TourneyButton : OsuButton
|
|
|
|
{
|
2022-07-13 16:34:33 +08:00
|
|
|
public new Box Background => base.Background;
|
|
|
|
|
2019-11-08 16:00:47 +08:00
|
|
|
public TourneyButton()
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|