mirror of
https://github.com/osukey/osukey.git
synced 2025-08-01 21:58:46 +09:00
28 lines
806 B
C#
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 },
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|