mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Make OverlayHeader non-generic
This commit is contained in:
@ -1,10 +1,14 @@
|
||||
// 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.
|
||||
|
||||
using osu.Framework.Graphics.UserInterface;
|
||||
|
||||
namespace osu.Game.Overlays
|
||||
{
|
||||
public abstract class BreadcrumbControlOverlayHeader : OverlayHeader<OverlayHeaderBreadcrumbControl>
|
||||
public abstract class BreadcrumbControlOverlayHeader : OverlayHeader
|
||||
{
|
||||
protected override OverlayHeaderBreadcrumbControl CreateControl() => new OverlayHeaderBreadcrumbControl();
|
||||
protected OverlayHeaderBreadcrumbControl TabControl;
|
||||
|
||||
protected override TabControl<string> CreateControl() => TabControl = new OverlayHeaderBreadcrumbControl();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user