Timeshift -> Playlists at a code level

This commit is contained in:
Dean Herbert
2020-12-25 13:11:21 +09:00
parent 4e21bd0108
commit a1384942b1
27 changed files with 93 additions and 93 deletions

View File

@ -8,9 +8,9 @@ using osuTK;
namespace osu.Game.Online.Multiplayer.GameTypes
{
public class GameTypeTimeshift : GameType
public class GameTypePlaylists : GameType
{
public override string Name => "Timeshift";
public override string Name => "Playlists";
public override Drawable GetIcon(OsuColour colours, float size) => new SpriteIcon
{

View File

@ -66,7 +66,7 @@ namespace osu.Game.Online.Multiplayer
[Cached]
[JsonIgnore]
public readonly Bindable<GameType> Type = new Bindable<GameType>(new GameTypeTimeshift());
public readonly Bindable<GameType> Type = new Bindable<GameType>(new GameTypePlaylists());
[Cached]
[JsonIgnore]