1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-10-06 10:14:00 -04:00
OpenDiablo2/d2common/d2data/object.go
2020-07-23 12:56:50 -04:00

16 lines
245 B
Go

package d2data
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common"
)
// Object is a game world object
type Object struct {
Type int
Id int //nolint:golint ID is the right key
X int
Y int
Flags int
Paths []d2common.Path
}