mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 17:37:50 +08:00
27 lines
633 B
C#
27 lines
633 B
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 osu.Game.Graphics.UserInterface;
|
|
using osu.Framework.Allocation;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
{
|
|
public class RankingsScopeSelector : GradientLineTabControl<RankingsScope>
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AccentColour = LineColour = Color4.Black;
|
|
}
|
|
}
|
|
|
|
public enum RankingsScope
|
|
{
|
|
Performance,
|
|
Spotlights,
|
|
Score,
|
|
Country
|
|
}
|
|
}
|