mirror of
https://github.com/ppy/osu
synced 2025-01-09 23:59:44 +00:00
22 lines
579 B
C#
22 lines
579 B
C#
// 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;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
{
|
|
public class OsuMarkdownListItem : FillFlowContainer
|
|
{
|
|
public OsuMarkdownListItem()
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Direction = FillDirection.Vertical;
|
|
Spacing = new Vector2(10, 10);
|
|
}
|
|
}
|
|
}
|