mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 19:22:55 +08:00
28 lines
721 B
C#
28 lines
721 B
C#
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|||
|
|
|||
|
using NUnit.Framework;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
using osu.Game.Screens.Multi;
|
|||
|
using osu.Game.Screens.Multi.Screens;
|
|||
|
|
|||
|
namespace osu.Game.Tests.Visual
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class TestCaseMultiHeader : OsuTestCase
|
|||
|
{
|
|||
|
public TestCaseMultiHeader()
|
|||
|
{
|
|||
|
Lobby lobby;
|
|||
|
Children = new Drawable[]
|
|||
|
{
|
|||
|
lobby = new Lobby
|
|||
|
{
|
|||
|
Padding = new MarginPadding { Top = Header.HEIGHT },
|
|||
|
},
|
|||
|
new Header(lobby),
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|