2019-08-15 03:34:29 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-08-15 02:24:36 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.News
|
|
|
|
|
{
|
|
|
|
|
public abstract class NewsContent : FillFlowContainer
|
|
|
|
|
{
|
2019-08-15 03:52:36 +08:00
|
|
|
|
protected NewsContent()
|
2019-08-15 02:24:36 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
Direction = FillDirection.Vertical;
|
2019-08-18 20:52:26 +08:00
|
|
|
|
Padding = new MarginPadding { Bottom = 100, Top = 20, Horizontal = 50 };
|
2019-08-15 02:24:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|