// Copyright (c) ppy Pty Ltd . 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.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; using osu.Game.Online.Multiplayer; using osuTK; namespace osu.Game.Screens.Multi.Match.Components { public class Footer : CompositeDrawable { public const float HEIGHT = 100; public Action OnStart; public readonly Bindable SelectedItem = new Bindable(); private readonly Drawable background; public Footer() { RelativeSizeAxes = Axes.X; Height = HEIGHT; InternalChildren = new[] { background = new Box { RelativeSizeAxes = Axes.Both }, new ReadyButton { Anchor = Anchor.Centre, Origin = Anchor.Centre, Size = new Vector2(600, 50), SelectedItem = { BindTarget = SelectedItem }, Action = () => OnStart?.Invoke() } }; } [BackgroundDependencyLoader] private void load(OsuColour colours) { background.Colour = OsuColour.FromHex(@"28242d"); } } }