mirror of
https://github.com/ppy/osu.git
synced 2026-05-26 11:30:04 +08:00
16 lines
403 B
C#
16 lines
403 B
C#
using osu.Game.Rulesets.Shape.Wiki.Sections;
|
|
using Symcol.Rulesets.Core.Wiki;
|
|
|
|
namespace osu.Game.Rulesets.Shape.Wiki
|
|
{
|
|
public class ShapeWikiOverlay : WikiOverlay
|
|
{
|
|
protected override WikiHeader Header => new ShapeWikiHeader();
|
|
|
|
protected override WikiSection[] Sections => new WikiSection[]
|
|
{
|
|
new Gameplay()
|
|
};
|
|
}
|
|
}
|