20 lines
414 B
Go
20 lines
414 B
Go
package objects
|
|
|
|
import "git.tebibyte.media/tomo/tomo/input"
|
|
|
|
func isClickingKey (key input.Key) bool {
|
|
return key == input.KeyEnter || key == input.Key(' ')
|
|
}
|
|
|
|
func isConfirmationKey (key input.Key) bool {
|
|
return key == input.KeyEnter
|
|
}
|
|
|
|
func isClickingButton (button input.Button) bool {
|
|
return button == input.ButtonLeft
|
|
}
|
|
|
|
func isMenuButton (button input.Button) bool {
|
|
return button == input.ButtonLeft
|
|
}
|