mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
24 lines
712 B
C#
24 lines
712 B
C#
// 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Screens.Multi.Match.Components;
|
|
|
|
namespace osu.Game.Screens.Multi.Multiplayer
|
|
{
|
|
public class CreateMultiplayerMatchButton : PurpleTriangleButton
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(StatefulMultiplayerClient multiplayerClient)
|
|
{
|
|
Triangles.TriangleScale = 1.5f;
|
|
|
|
Text = "Create room";
|
|
|
|
((IBindable<bool>)Enabled).BindTo(multiplayerClient.IsConnected);
|
|
}
|
|
}
|
|
}
|