mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
28 lines
759 B
C#
28 lines
759 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using OpenTK.Input;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Overlays.Mods
|
|
{
|
|
public class SpecialSection : ModSection
|
|
{
|
|
protected override Key[] ToggleKeys => new[] { Key.Z, Key.X, Key.C, Key.V, Key.B, Key.N, Key.M };
|
|
public override ModType ModType => ModType.Special;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
SelectedColour = colours.BlueLight;
|
|
}
|
|
|
|
public SpecialSection()
|
|
{
|
|
Header = @"Special";
|
|
}
|
|
}
|
|
}
|