2020-12-23 23:38:18 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-23 23:38:18 +08:00
|
|
|
using osu.Framework.Allocation;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Match.Components;
|
2020-12-23 23:38:18 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2020-12-23 23:38:18 +08:00
|
|
|
{
|
2021-08-03 17:05:43 +08:00
|
|
|
public partial class CreatePlaylistsRoomButton : CreateRoomButton
|
2020-12-23 23:38:18 +08:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-12-24 20:59:10 +08:00
|
|
|
Text = "Create playlist";
|
2020-12-23 23:38:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|