/// <summary> /// Gets a value indicating whether the input binding uses the same device /// and the same primary buttons as the specified input binding. /// </summary> /// <param name="binding">The <see cref="InputBinding"/> to compare against this input binding.</param> /// <returns><see langword="true"/> if the specified input binding uses the same device and the same primary /// buttons as this input binding; otherwise, <see langword="false"/>.</returns> public abstract Boolean UsesSamePrimaryButtons(InputBinding binding);
/// <summary> /// Removes a binding from the group. /// </summary> /// <param name="binding">The <see cref="InputBinding"/> to remove from the group.</param> /// <returns><see langword="true"/> if the binding was removed from the group; otherwise, <see langword="false"/>.</returns> public Boolean Remove(InputBinding binding) { return(bindings.Remove(binding)); }