aboutsummaryrefslogtreecommitdiff
path: root/pen.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-05-12 20:07:45 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-05-12 20:07:45 +0200
commit810b19c2e08dee90755f76dd0adedc7a950bd486 (patch)
tree1e365cfdf08cddbbe7325cbdd9ae8d3a05c444f4 /pen.go
parentcf79b796e59bbd8f45824ab164c751e753967f10 (diff)
Add initial pen position
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",
- },
-}