1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-23 15:45:24 +00:00
OpenDiablo2/d2common/Point.go
2020-07-08 09:16:56 -04:00

14 lines
180 B
Go

package d2common
// Point represents a point
type Point struct {
X int
Y int
}
// Pointf represents a point with float coordinates
type Pointf struct {
X float64
Y float64
}