mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 01:57:24 +08:00
31 lines
906 B
C#
31 lines
906 B
C#
// 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.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Screens;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
/// <summary>
|
|
/// A test case which can be used to test a screen (that relies on OnEntering being called to execute startup instructions).
|
|
/// </summary>
|
|
public abstract class ScreenTestCase : ManualInputManagerTestCase
|
|
{
|
|
private OsuScreenStack stack;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Add(stack = new OsuScreenStack { RelativeSizeAxes = Axes.Both });
|
|
}
|
|
|
|
protected void LoadScreen(OsuScreen screen)
|
|
{
|
|
if (stack.CurrentScreen != null)
|
|
stack.Exit();
|
|
stack.Push(screen);
|
|
}
|
|
}
|
|
}
|