zworld/plugins/system/input/handler.go
2024-01-14 22:56:06 +08:00

20 lines
264 B
Go

package input
import (
"zworld/plugins/system/input/keys"
"zworld/plugins/system/input/mouse"
)
type Handler interface {
KeyHandler
MouseHandler
}
type KeyHandler interface {
KeyEvent(keys.Event)
}
type MouseHandler interface {
MouseEvent(mouse.Event)
}