summaryrefslogtreecommitdiff
path: root/plot.go
diff options
context:
space:
mode:
Diffstat (limited to 'plot.go')
-rw-r--r--plot.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/plot.go b/plot.go
new file mode 100644
index 0000000..d6d9b6d
--- /dev/null
+++ b/plot.go
@@ -0,0 +1,8 @@
+package main
+
+type Plotter interface {
+ Clear()
+ Dim() (width, height int)
+ Plot(x, y int)
+ Pen()
+}