From 683a9d53e6b852c35e09834fbcb4c86b979592e7 Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Sun, 29 Dec 2019 16:59:57 +0100 Subject: [PATCH] Add BoundingBox type --- types/types.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 types/types.go diff --git a/types/types.go b/types/types.go new file mode 100644 index 0000000..583dc65 --- /dev/null +++ b/types/types.go @@ -0,0 +1,5 @@ +package types + +type BoundingBox struct { + Left, Top, Right, Bottom int +}