1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 19:22:54 +08:00

add WikiMarkdownContainer

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-17 01:08:02 +07:00
parent 728258d93a
commit ce8b2c1e37
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -0,0 +1,15 @@
// 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.Game.Graphics.Containers.Markdown;
namespace osu.Game.Overlays.Wiki.Markdown
{
public class WikiMarkdownContainer : OsuMarkdownContainer
{
public string CurrentPath
{
set => Schedule(() => DocumentUrl += $"wiki/{value}");
}
}
}