aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ui/interfaces.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ui/interfaces.go')
-rw-r--r--lib/ui/interfaces.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ui/interfaces.go b/lib/ui/interfaces.go
index a28c6c29..8ede22c7 100644
--- a/lib/ui/interfaces.go
+++ b/lib/ui/interfaces.go
@@ -20,6 +20,11 @@ type Closeable interface {
Close()
}
+type Visible interface {
+ // Indicate that this component is visible or not
+ Show(bool)
+}
+
type RootDrawable interface {
Initialize(ui *UI)
}