1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:47:26 +08:00
This commit is contained in:
David Zhao 2019-03-11 19:52:28 +09:00
parent 6a1e600099
commit 63b9fa58ef
2 changed files with 1 additions and 5 deletions

View File

@ -95,10 +95,7 @@ namespace osu.Game.Screens.Multi
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = Header.HEIGHT },
Children = new CompositeDrawable[]
{
screenStack = new OsuScreenStack(loungeSubScreen = new LoungeSubScreen()) { RelativeSizeAxes = Axes.Both },
}
Child = screenStack = new OsuScreenStack(loungeSubScreen = new LoungeSubScreen()) { RelativeSizeAxes = Axes.Both }
},
new Header(screenStack),
createButton = new HeaderButton

View File

@ -5,7 +5,6 @@ using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Screens;
using osu.Game.Graphics.Containers;
using osu.Game.Screens.Multi.Lounge;
namespace osu.Game.Screens
{