mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 18:57:18 -05:00
14 lines
180 B
Go
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
|
|
}
|