1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 11:30:04 +08:00
Files
osu-lazer/osu.Game.Rulesets.Shape/Wiki/ShapeWikiOverlay.cs
T
2018-03-19 12:07:10 -04:00

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()
};
}
}