osu/osu.Game.Tournament.Tests/TestCaseShowcase.cs

26 lines
653 B
C#
Raw Normal View History

2018-11-03 22:12:07 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-06 10:23:03 +00:00
using System;
using System.Collections.Generic;
2018-11-03 22:12:07 +00:00
using osu.Framework.Allocation;
using osu.Game.Tests.Visual;
using osu.Game.Tournament.Screens.Showcase;
namespace osu.Game.Tournament.Tests
{
public class TestCaseShowcase : OsuTestCase
{
2018-11-06 10:23:03 +00:00
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ShowcaseScreen)
};
2018-11-03 22:12:07 +00:00
[BackgroundDependencyLoader]
private void load()
{
Add(new ShowcaseScreen());
}
}
}