add ShowPage method in WikiOverlay

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-05-19 19:12:16 +07:00
parent 004cd7c834
commit 463774d4f2

View File

@ -62,6 +62,12 @@ namespace osu.Game.Overlays
});
}
public void ShowPage(string pagePath = index_path)
{
path.Value = pagePath.Trim('/');
Show();
}
protected override WikiHeader CreateHeader() => new WikiHeader();
protected override void LoadComplete()