mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
28 lines
780 B
C#
28 lines
780 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.Sprites;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
{
|
|
public class OsuMarkdownOrderedListItem : OsuMarkdownListItem
|
|
{
|
|
private const float left_padding = 30;
|
|
|
|
private readonly int order;
|
|
|
|
public OsuMarkdownOrderedListItem(int order)
|
|
{
|
|
this.order = order;
|
|
Padding = new MarginPadding { Left = left_padding };
|
|
}
|
|
|
|
protected override SpriteText CreateMarker() => base.CreateMarker().With(t =>
|
|
{
|
|
t.X = -left_padding;
|
|
t.Text = $"{order}.";
|
|
});
|
|
}
|
|
}
|