mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:07:25 +08:00
28 lines
733 B
C#
28 lines
733 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.Lounge;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
[TestFixture]
|
|
public class TestCaseMultiHeader : OsuTestCase
|
|
{
|
|
public TestCaseMultiHeader()
|
|
{
|
|
Lounge lounge;
|
|
Children = new Drawable[]
|
|
{
|
|
lounge = new Lounge
|
|
{
|
|
Padding = new MarginPadding { Top = Header.HEIGHT },
|
|
},
|
|
new Header(lounge),
|
|
};
|
|
}
|
|
}
|
|
}
|