1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-24 09:37:19 +08:00

add OsuMarkdownListItem

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-04-30 09:43:05 +07:00
parent 171e954e89
commit 820408757a
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -0,0 +1,21 @@
// 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);
}
}
}