2019-09-22 01:10:04 +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.
|
|
|
|
|
2019-09-22 03:15:02 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Game.Tournament.IPC;
|
|
|
|
|
2019-09-22 01:10:04 +08:00
|
|
|
namespace osu.Game.Tournament.Screens
|
|
|
|
{
|
|
|
|
public class SetupScreen : TournamentScreen
|
|
|
|
{
|
2019-09-22 03:15:02 +08:00
|
|
|
[Resolved]
|
|
|
|
private MatchIPCInfo ipc { get; set; }
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
AddInternal(new SpriteText
|
|
|
|
{
|
|
|
|
Text = (ipc as FileBasedIPC)?.Storage.GetFullPath(string.Empty)
|
|
|
|
});
|
|
|
|
}
|
2019-09-22 01:10:04 +08:00
|
|
|
}
|
|
|
|
}
|