1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-16 00:52:55 +08:00
osu-lazer/osu.Game/Overlays/BreadcrumbControlOverlayHeader.cs

15 lines
493 B
C#
Raw Normal View History

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