2019-11-08 17:00:47 +09: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 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2022-07-13 17:34:33 +09:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-11-08 17:00:47 +09:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
{
|
2022-11-24 14:32:20 +09:00
|
|
|
public partial class TourneyButton : OsuButton
|
2019-11-08 17:00:47 +09:00
|
|
|
{
|
2022-07-13 17:34:33 +09:00
|
|
|
public new Box Background => base.Background;
|
|
|
|
|
2019-11-08 17:00:47 +09:00
|
|
|
public TourneyButton()
|
|
|
|
: base(null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|