about summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2020-09-10 07:50:30 +0200
committerReto Brunner <reto@labrat.space>2020-09-10 07:50:30 +0200
commit9d801414084470340f4cc1a9e0597d0a8d792587 (patch)
tree5116ee1eedc0311dc8b43f2cd48954a7b109feb0 /lib
parent504417b6709ba8ec74016ad00eaa7fcec9deb6ef (diff)
downloadaerc-9d801414084470340f4cc1a9e0597d0a8d792587.tar.gz
Remove unused Simulator interface
Diffstat (limited to 'lib')
-rw-r--r--lib/ui/interfaces.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ui/interfaces.go b/lib/ui/interfaces.go
index c12bdb7..1f2f284 100644
--- a/lib/ui/interfaces.go
+++ b/lib/ui/interfaces.go
@@ -31,11 +31,6 @@ type Beeper interface {
 	OnBeep(func() error)
 }
 
-type Simulator interface {
-	// Queues up the given input events for simulation
-	Simulate(events []tcell.Event)
-}
-
 type DrawableInteractive interface {
 	Drawable
 	Interactive