2019-01-24 16:43:03 +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.
|
2018-07-11 15:30:33 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Screens.Menu;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
{
|
2019-02-15 16:01:06 +08:00
|
|
|
public class TestCaseDisclaimer : ScreenTestCase
|
2018-07-11 15:30:33 +08:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2019-02-15 16:01:06 +08:00
|
|
|
LoadScreen(new Disclaimer());
|
2018-07-11 15:30:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|