1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 01:07:24 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Match/Components/Footer.cs

49 lines
1.3 KiB
C#
Raw Normal View History

2020-02-14 19:35:52 +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.
using System;
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2020-02-14 19:35:52 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Screens.OnlinePlay.Playlists;
2020-02-14 19:35:52 +08:00
using osuTK;
namespace osu.Game.Screens.OnlinePlay.Match.Components
2020-02-14 19:35:52 +08:00
{
public class Footer : CompositeDrawable
{
public const float HEIGHT = 50;
2020-02-14 19:35:52 +08:00
public Action OnStart;
private readonly Drawable background;
public Footer()
{
RelativeSizeAxes = Axes.X;
Height = HEIGHT;
InternalChildren = new[]
{
background = new Box { RelativeSizeAxes = Axes.Both },
2020-12-25 12:11:21 +08:00
new PlaylistsReadyButton
2020-02-14 19:35:52 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(600, 50),
Action = () => OnStart?.Invoke()
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = Color4Extensions.FromHex(@"28242d");
2020-02-14 19:35:52 +08:00
}
}
}