mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
9 lines
101 B
Go
9 lines
101 B
Go
package d2common
|
|
|
|
// Path represents a path
|
|
type Path struct {
|
|
X int
|
|
Y int
|
|
Action int
|
|
}
|