mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-10-31 16:27:18 -04:00
21 lines
344 B
Go
21 lines
344 B
Go
|
package d2common
|
||
|
|
||
|
type Rectangle struct {
|
||
|
Left int
|
||
|
Top int
|
||
|
Width int
|
||
|
Height int
|
||
|
}
|
||
|
|
||
|
func (v *Rectangle) Bottom() int {
|
||
|
return v.Top + v.Height
|
||
|
}
|
||
|
|
||
|
func (v *Rectangle) Right() int {
|
||
|
return v.Left + v.Width
|
||
|
}
|
||
|
|
||
|
func (v *Rectangle) IsInRect(x, y int) bool {
|
||
|
return x >= v.Left && x < v.Left+v.Width && y >= v.Top && y < v.Top+v.Height
|
||
|
}
|