diff --git a/MLEM/Input/Keybind.cs b/MLEM/Input/Keybind.cs index 07a489b..4021544 100644 --- a/MLEM/Input/Keybind.cs +++ b/MLEM/Input/Keybind.cs @@ -390,6 +390,11 @@ namespace MLEM.Input { this.InverseModifiers = this.InverseModifiers.Where(k => k != this.Key).Except(this.Modifiers).ToArray(); } + /// + /// Creates a new empty combination using the default with the input type and no or . + /// + public Combination() : this(default, null, null) {} + /// /// Returns whether this combination is currently down. /// See for more information.