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