// Package module implements all the modules.
// Copyright (C) 2022 Kevin Lyda <kevin@lyda.ie>
package modules

type Click struct {
	Name      string   `json:"name"`
	Button    int64    `json:"button"`
	Modifiers []string `json:"modifiers"`
	X         int64    `json:"x"`
	Y         int64    `json:"y"`
	RelativeX int64    `json:"relative_x"`
	RelativeY int64    `json:"relative_y"`
	Width     int64    `json:"width"`
	Height    int64    `json:"height"`
}