2017-02-17 19:07:11 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Screens.Menu;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class Loader : OsuScreen
|
2017-02-17 19:07:11 +08:00
|
|
|
|
{
|
|
|
|
|
internal override bool ShowOverlays => false;
|
|
|
|
|
|
|
|
|
|
public Loader()
|
|
|
|
|
{
|
|
|
|
|
ValidForResume = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuGame game)
|
|
|
|
|
{
|
|
|
|
|
if (game.IsDeployedBuild)
|
2017-04-02 14:56:12 +08:00
|
|
|
|
LoadComponentAsync(new Disclaimer(), d => Push((Screen)d));
|
2017-02-17 19:07:11 +08:00
|
|
|
|
else
|
2017-04-02 14:56:12 +08:00
|
|
|
|
LoadComponentAsync(new Intro(), d => Push((Screen)d));
|
2017-02-17 19:07:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|