mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
17 lines
411 B
C#
17 lines
411 B
C#
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.Overlays.News
|
|
{
|
|
public abstract class NewsContent : FillFlowContainer
|
|
{
|
|
public NewsContent()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
Direction = FillDirection.Vertical;
|
|
Padding = new MarginPadding { Bottom = 100 };
|
|
}
|
|
}
|
|
}
|