ui/input: rename Queue to Router and Events to Queue

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-07-12 00:03:52 +02:00
parent 6a4ba30c96
commit a22bcfc88c
5 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -4,9 +4,9 @@
// such as pointer and key provide the interfaces for specific input types.
package input
// Events maps an event handler key to the events
// Queue maps an event handler key to the events
// available to the handler.
type Events interface {
type Queue interface {
Events(k Key) []Event
}