Files
osukey/osu.Game.Rulesets.Mania/Mods/IKeyBindingMod.cs
2018-01-15 19:29:51 +09:00

14 lines
440 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
namespace osu.Game.Rulesets.Mania.Mods
{
public interface IKeyBindingMod
{
/// <summary>
/// The keybinding variant which this <see cref="IKeyBindingMod"/> requires.
/// </summary>
ManiaKeyBindingVariantType Variant { get; }
}
}