Add a test case which starts the game

This commit is contained in:
Dean Herbert
2017-11-08 13:52:44 +09:00
parent 713d730d10
commit d8d7165164
4 changed files with 49 additions and 6 deletions

View File

@ -8,7 +8,7 @@ using OpenTK;
namespace osu.Game.Screens
{
internal class Loader : OsuScreen
public class Loader : OsuScreen
{
public override bool ShowOverlays => false;
@ -30,7 +30,7 @@ namespace osu.Game.Screens
}
[BackgroundDependencyLoader]
private void load(OsuGame game)
private void load(OsuGameBase game)
{
if (game.IsDeployedBuild)
LoadComponentAsync(new Disclaimer(), d => Push(d));