mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 10:17:32 +08:00
17 lines
431 B
C#
17 lines
431 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
namespace osu.Game.Tournament.Screens.Showcase
|
|
{
|
|
public class ShowcaseScreen : BeatmapInfoScreen
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddInternal(new TournamentLogo());
|
|
}
|
|
}
|
|
}
|