Files
mayhem-party/src/device/input/button/button.go
2023-04-02 10:28:12 -06:00

13 lines
172 B
Go

package button
import "fmt"
type Button struct {
Char byte
Down bool
}
func (button Button) String() string {
return fmt.Sprintf("%c:%v", button.Char, button.Down)
}