1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Overlays/DashboardOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.2 KiB
C#
Raw Normal View History

2020-04-16 16:01:36 +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.
using System;
2020-04-16 16:01:36 +08:00
using osu.Game.Overlays.Dashboard;
using osu.Game.Overlays.Dashboard.Friends;
2020-04-16 16:01:36 +08:00
namespace osu.Game.Overlays
{
public partial class DashboardOverlay : TabbableOnlineOverlay<DashboardOverlayHeader, DashboardOverlayTabs>
2020-04-16 16:01:36 +08:00
{
public DashboardOverlay()
2021-01-18 15:48:12 +08:00
: base(OverlayColourScheme.Purple)
2020-04-20 14:34:48 +08:00
{
}
2021-01-18 15:48:12 +08:00
protected override DashboardOverlayHeader CreateHeader() => new DashboardOverlayHeader();
public override bool AcceptsFocus => false;
protected override void CreateDisplayToLoad(DashboardOverlayTabs tab)
{
switch (tab)
{
case DashboardOverlayTabs.Friends:
LoadDisplay(new FriendDisplay());
break;
case DashboardOverlayTabs.CurrentlyPlaying:
LoadDisplay(new CurrentlyPlayingDisplay());
break;
default:
throw new NotImplementedException($"Display for {tab} tab is not implemented");
}
}
2020-04-16 16:01:36 +08:00
}
}