mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
// 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;
|
|
using osu.Game.Overlays.Dashboard;
|
|
using osu.Game.Overlays.Dashboard.Friends;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public class DashboardOverlay : TabbableOnlineOverlay<DashboardOverlayHeader, DashboardOverlayTabs>
|
|
{
|
|
public DashboardOverlay()
|
|
: base(OverlayColourScheme.Purple)
|
|
{
|
|
}
|
|
|
|
protected override DashboardOverlayHeader CreateHeader() => new DashboardOverlayHeader();
|
|
|
|
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");
|
|
}
|
|
}
|
|
}
|
|
}
|