about summary refs log tree commit diff
path: root/shell/structs/boundary.go
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-02-09 18:57:58 +0100
committerEmile <hanemile@protonmail.com>2019-02-09 18:57:58 +0100
commit4904db304d33a6a2d7ede4d8097f31f55bc1c0c1 (patch)
treef392a83939092fbf909edcd12c0cb1bfa5d967db /shell/structs/boundary.go
parent581710da6c42a2f37966e6f3401e09e780d0d3a0 (diff)
removed the shell, it's just not necessary...
Diffstat (limited to 'shell/structs/boundary.go')
-rw-r--r--shell/structs/boundary.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/shell/structs/boundary.go b/shell/structs/boundary.go
deleted file mode 100644
index b49c7a2..0000000
--- a/shell/structs/boundary.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package structs
-
-type Boundary struct {
-	// boundary box values
-	x     int64
-	y     int64
-	width int64
-}
-
-func NewBoundary(x int64, y int64, width int64) *Boundary {
-	return &Boundary{x: x, y: y, width: width}
-}
-
-func (b *Boundary) Width() int64 {
-	return b.width
-}
-
-func (b *Boundary) SetWidth(width int64) {
-	b.width = width
-}
-
-func (b *Boundary) Y() int64 {
-	return b.y
-}
-
-func (b *Boundary) SetY(y int64) {
-	b.y = y
-}
-
-func (b *Boundary) X() int64 {
-	return b.x
-}
-
-func (b *Boundary) SetX(x int64) {
-	b.x = x
-}