should not use unkeyed fields anyway.

This commit is contained in:
Will Charczuk 2017-03-05 16:53:21 -08:00
parent 8b34cb3bd7
commit 62b1e2c499

2
box.go
View File

@ -23,11 +23,11 @@ func NewBox(top, left, right, bottom int) Box {
// Box represents the main 4 dimensions of a box.
type Box struct {
IsSet bool
Top int
Left int
Right int
Bottom int
IsSet bool
}
// IsZero returns if the box is set or not.