Implement BreadcrumbControlOverlayHeader

This commit is contained in:
Andrei Zavatski
2019-12-28 04:57:41 +03:00
parent f2ff57d6b7
commit ac2280c4ef
9 changed files with 75 additions and 21 deletions

View File

@ -0,0 +1,10 @@
// 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();
}
}