blob: 2d4f0995ecef491c9c9044aebf2b914d9673e037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package ui
import (
"github.com/gdamore/tcell"
)
type Interactive interface {
// Returns true if the event was handled by this component
Event(event tcell.Event) bool
}
type Simulator interface {
// Queues up the given input events for simulation
Simulate(events []tcell.Event)
}
type DrawableInteractive interface {
Drawable
Interactive
}
|