osu/osu.Game/Overlays/Mods/DifficultyIncreaseSection.cs

28 lines
847 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-23 02:16:23 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Input;
2017-02-23 02:16:23 +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-23 02:16:23 +00:00
namespace osu.Game.Overlays.Mods
2017-02-23 02:16:23 +00:00
{
public class DifficultyIncreaseSection : ModSection
{
2017-03-09 08:44:45 +00:00
protected override Key[] ToggleKeys => new[] { Key.A, Key.S, Key.D, Key.F, Key.G, Key.H, Key.J, Key.K, Key.L };
2017-03-06 16:19:38 +00:00
public override ModType ModType => ModType.DifficultyIncrease;
2017-02-23 02:16:23 +00:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
SelectedColour = colours.YellowLight;
}
public DifficultyIncreaseSection()
{
Header = @"Difficulty Increase";
2017-02-23 02:16:23 +00:00
}
}
}