// 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.Game.Scoring; using osu.Game.Screens.Menu; using osu.Game.Screens.Play; namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate { public class MultiplayerSpectatorPlayerLoader : SpectatorPlayerLoader { public MultiplayerSpectatorPlayerLoader(Score score, Func createPlayer) : base(score, createPlayer) { } protected override void LogoArriving(OsuLogo logo, bool resuming) { } protected override void LogoExiting(OsuLogo logo) { } } }