mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04: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
|
|
}
|