osukey/osu.Game/Overlays/TabControlOverlayHeader.cs
2019-12-28 04:57:41 +03:00

11 lines
389 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.
namespace osu.Game.Overlays
{
public abstract class TabControlOverlayHeader : OverlayHeader<OverlayHeaderTabControl>
{
protected override OverlayHeaderTabControl CreateControl() => new OverlayHeaderTabControl();
}
}