shithub: xui

ref: ecec95e7ba212a744f32dd47981f3187b3634a55
dir: /events/keyboard/keyboard.go/

View raw version
package keyboard

type Type int

const (
	Down Type = 1 << iota
	Up
	Pressed
)

type Event struct {
	Type

	Key rune
}