osu/osu.Game/Overlays/Mods/DifficultyReductionSection.cs

28 lines
857 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-02-16 20:05:03 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-02-16 23:00:18 +00:00
using OpenTK.Input;
2017-02-16 20:05:03 +00:00
using osu.Framework.Allocation;
using osu.Game.Graphics;
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Mods;
2017-02-16 20:05:03 +00:00
namespace osu.Game.Overlays.Mods
2017-02-23 02:16:23 +00:00
{
public class DifficultyReductionSection : ModSection
2017-02-16 20:05:03 +00:00
{
2017-03-09 08:44:45 +00:00
protected override Key[] ToggleKeys => new[] { Key.Q, Key.W, Key.E, Key.R, Key.T, Key.Y, Key.U, Key.I, Key.O, Key.P };
2017-03-06 16:19:38 +00:00
public override ModType ModType => ModType.DifficultyReduction;
2017-02-16 20:05:03 +00:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
SelectedColour = colours.GreenLight;
2017-02-16 20:05:03 +00:00
}
2017-02-23 02:16:23 +00:00
public DifficultyReductionSection()
2017-02-16 20:05:03 +00:00
{
Header = @"Difficulty Reduction";
2017-02-23 02:16:23 +00:00
}
}
}