mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
a24c05efa9
* More mapgen updates * Added east generation * Added west town generation * Fixed test errors
12 lines
100 B
Go
12 lines
100 B
Go
package d2common
|
|
|
|
type Point struct {
|
|
X int
|
|
Y int
|
|
}
|
|
|
|
type Pointf struct {
|
|
X float64
|
|
Y float64
|
|
}
|