Files
osukey/osu.Game/Screens/Select/BeatmapDetailArea.cs
2017-03-23 00:22:31 -03:00

28 lines
806 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
namespace osu.Game.Screens.Select
{
public class BeatmapDetailArea : Container
{
public BeatmapDetailArea()
{
Children = new Drawable[]
{
new BeatmapDetailAreaTabControl
{
RelativeSizeAxes = Axes.X,
},
new Container
{
Padding = new MarginPadding { Top = BeatmapDetailAreaTabControl.HEIGHT },
},
};
}
}
}