1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-20 15:37:31 -05:00

16 lines
213 B
Go
Raw Normal View History

package d2ds1
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2path"
)
// Object is a game world object
type Object struct {
2020-07-23 19:56:50 +03:00
Type int
2020-07-24 14:54:52 +03:00
ID int
2020-07-23 19:56:50 +03:00
X int
Y int
Flags int
Paths []d2path.Path
}