Remove unused stuff

This commit is contained in:
Oskar Solecki
2019-07-09 00:26:57 +02:00
committed by GitHub
parent 52b54506c6
commit 8f7476e9cc

View File

@ -168,8 +168,6 @@ namespace osu.Game.Screens.Edit
menuBar.Mode.ValueChanged += onModeChanged;
host.Exiting += onExitingGame;
bottomBackground.Colour = colours.Gray2;
}
@ -237,8 +235,6 @@ namespace osu.Game.Screens.Edit
Beatmap.Value.Track?.Stop();
}
private bool isExitingGame = false;
public override bool OnExiting(IScreen next)
{
Background.FadeColour(Color4.White, 500);
@ -279,7 +275,5 @@ namespace osu.Game.Screens.Edit
else
clock.SeekForward(!clock.IsRunning, amount);
}
private bool onExitingGame() => isExitingGame = true;
}
}