Add BoundingBox type

This commit is contained in:
Cyrille Nofficial 2019-12-29 16:59:57 +01:00
parent 47d48c39b0
commit 683a9d53e6

5
types/types.go Normal file
View File

@ -0,0 +1,5 @@
package types
type BoundingBox struct {
Left, Top, Right, Bottom int
}