2019-12-28 09:57:41 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
2019-12-31 23:12:03 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
|
2019-12-28 09:57:41 +08:00
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2019-12-31 23:12:03 +08:00
|
|
|
|
public abstract class BreadcrumbControlOverlayHeader : OverlayHeader
|
2019-12-28 09:57:41 +08:00
|
|
|
|
{
|
2019-12-31 23:12:03 +08:00
|
|
|
|
protected OverlayHeaderBreadcrumbControl TabControl;
|
|
|
|
|
|
|
|
|
|
protected override TabControl<string> CreateControl() => TabControl = new OverlayHeaderBreadcrumbControl();
|
2019-12-28 09:57:41 +08:00
|
|
|
|
}
|
|
|
|
|
}
|