Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xyproto committed Dec 10, 2021
1 parent ef7e9f2 commit f9068b4
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions box.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,9 @@ import (
// * size (w, h)
// * color (r, g, b, a)
type Box struct {
x int
y int
w int
h int
r int
g int
b int
a int
x, y int
w, h int
r, g, b, a int
}

// CreateRandomBox randomly searches for a place for a 1x1 size box.
Expand Down

0 comments on commit f9068b4

Please sign in to comment.