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) }