mayhem-party/src/device/input/input.go

10 lines
128 B
Go

package input
type Input interface {
Read() []Button
}
func New() Input {
return NewRandom(RandomCharFromRange('a', 'g'))
}