// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; using osu.Framework.Screens; namespace osu.Game.Overlays.AccountCreation { public abstract class AccountCreationScreen : Screen { protected override void OnEntering(Screen last) { base.OnEntering(last); Content.FadeOut().Delay(200).FadeIn(200); } protected override void OnResuming(Screen last) { base.OnResuming(last); Content.FadeIn(200); } protected override void OnSuspending(Screen next) { base.OnSuspending(next); Content.FadeOut(200); } } }