Move OverlayHeaderTabControl to correct namespace

This commit is contained in:
Dean Herbert
2019-05-21 13:36:21 +09:00
parent 5a9c3ab9fa
commit aba945934d
3 changed files with 7 additions and 7 deletions

View File

@ -4,13 +4,12 @@
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Profile.Header;
namespace osu.Game.Overlays
{
public abstract class OverlayHeader : Container
{
protected readonly HeaderTabControl TabControl;
protected readonly OverlayHeaderTabControl TabControl;
private const float cover_height = 150;
private const float cover_info_height = 75;
@ -41,7 +40,7 @@ namespace osu.Game.Overlays
Children = new Drawable[]
{
CreateTitle().With(t => t.X = -ScreenTitle.ICON_WIDTH),
TabControl = new HeaderTabControl
TabControl = new OverlayHeaderTabControl
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,