aboutsummaryrefslogtreecommitdiff
path: root/lib/ui/interactive.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ui/interactive.go')
-rw-r--r--lib/ui/interactive.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ui/interactive.go b/lib/ui/interactive.go
index 8bdf592..efab828 100644
--- a/lib/ui/interactive.go
+++ b/lib/ui/interactive.go
@@ -13,3 +13,8 @@ type Simulator interface {
// Queues up the given input events for simulation
Simulate(events []tb.Event)
}
+
+type DrawableInteractive interface {
+ Drawable
+ Interactive
+}