2023-06-23 00:37:25 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-11-08 16:00:47 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2023-07-20 18:08:09 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2022-07-13 16:34:33 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2023-07-20 18:08:09 +08:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2019-11-08 16:00:47 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
|
{
|
2023-07-20 18:08:09 +08:00
|
|
|
|
public partial class TourneyButton : SettingsButton
|
2019-11-08 16:00:47 +08:00
|
|
|
|
{
|
2022-07-13 16:34:33 +08:00
|
|
|
|
public new Box Background => base.Background;
|
|
|
|
|
|
2023-07-20 18:08:09 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2019-11-08 16:00:47 +08:00
|
|
|
|
{
|
2023-07-20 18:08:09 +08:00
|
|
|
|
Padding = new MarginPadding();
|
2019-11-08 16:00:47 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|