15 lines
458 B
Go
15 lines
458 B
Go
package mappingrules
|
|
|
|
import "github.com/holoplot/go-evdev"
|
|
|
|
type MappingRuleAxisCombined struct {
|
|
MappingRuleBase
|
|
}
|
|
|
|
func NewMappingRuleAxisCombined(base MappingRuleBase, inputLower *RuleTargetAxis, inputUpper *RuleTargetAxis, output *RuleTargetAxis) *MappingRuleAxisCombined {
|
|
return nil
|
|
}
|
|
|
|
func (rule *MappingRuleAxisCombined) MatchEvent(device Device, event *evdev.InputEvent, mode *string) (*evdev.InputDevice, *evdev.InputEvent) {
|
|
return nil, nil
|
|
}
|