mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:57:52 +08:00
30 lines
876 B
C#
30 lines
876 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Graphics.Containers.Markdown
|
|
{
|
|
public partial class OsuMarkdownSeparator : MarkdownSeparator
|
|
{
|
|
protected override Drawable CreateSeparator() => new Separator();
|
|
|
|
private partial class Separator : Box
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Height = 1;
|
|
Colour = colourProvider.Background3;
|
|
}
|
|
}
|
|
}
|
|
}
|