Skip to content
Snippets Groups Projects
Select Git revision
  • 6b7a3c622bff273c1f93b62bb545c90505819fbc
  • main default protected
2 results

clicks.go

Blame
  • clicks.go 456 B
    // 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"`
    }