aboutsummaryrefslogtreecommitdiff
path: root/pen.go
diff options
context:
space:
mode:
Diffstat (limited to 'pen.go')
-rw-r--r--pen.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/pen.go b/pen.go
deleted file mode 100644
index 6bcc02b..0000000
--- a/pen.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-type Pen struct {
- Speed int
- Force int
- Cap string
-}
-
-var pens = map[string]Pen{
- "pen": Pen{
- Speed: 10,
- Force: 10,
- Cap: "pen",
- },
- "thin": Pen{
- Speed: 10,
- Force: 2,
- Cap: "blue",
- },
- "thick": Pen{
- Speed: 10,
- Force: 27,
- Cap: "yellow",
- },
-}