Add abstract ModType for ModSection.

This commit is contained in:
Huo Yaoyuan
2017-03-07 00:19:38 +08:00
parent 318ab68af1
commit 836484ba51
5 changed files with 33 additions and 28 deletions

View File

@ -4,12 +4,14 @@
using OpenTK.Input;
using osu.Framework.Allocation;
using osu.Game.Graphics;
using osu.Game.Modes;
namespace osu.Game.Overlays.Mods
{
public class AssistedSection : ModSection
{
protected override Key[] ToggleKeys => new Key[] { 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)