Added Resolution type

This commit is contained in:
2022-08-02 23:34:21 -07:00
parent 3e348641d8
commit 82d0a5934b
6 changed files with 76 additions and 23 deletions

View File

@@ -95,7 +95,12 @@ type Input interface {
}
type TapSequence struct {
Events []Input
Events []Input
Resolution Resolution
}
type Resolution struct {
Width int
Height int
}
// ShortenSleep allows you to shorten all the sleep times between tap and swipe events.