Add the ability for PerformFromMenuRunner to inspect nested screen stacks

This commit is contained in:
Dean Herbert
2021-02-19 17:58:04 +09:00
parent 1701d69a60
commit 362e4802f7
3 changed files with 36 additions and 4 deletions

View File

@ -0,0 +1,15 @@
// 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.Screens;
namespace osu.Game.Screens
{
/// <summary>
/// A screen which manages a nested stack of screens within itself.
/// </summary>
public interface IHasSubScreenStack
{
ScreenStack SubScreenStack { get; }
}
}