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.
|
|
|
|
|
|
2023-07-20 19:08:09 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2022-07-13 17:34:33 +09:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2023-07-20 19:08:09 +09:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2019-11-08 17:00:47 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament
|
|
|
|
|
{
|
2023-07-20 19:08:09 +09:00
|
|
|
|
public partial class TourneyButton : SettingsButton
|
2019-11-08 17:00:47 +09:00
|
|
|
|
{
|
2022-07-13 17:34:33 +09:00
|
|
|
|
public new Box Background => base.Background;
|
|
|
|
|
|
2023-07-20 19:08:09 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2019-11-08 17:00:47 +09:00
|
|
|
|
{
|
2023-07-20 19:08:09 +09:00
|
|
|
|
Padding = new MarginPadding();
|
2019-11-08 17:00:47 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|