1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-28 22:26:30 -04:00
OpenDiablo2/d2common/d2fileformats/d2ds1/object.go
lord 16b8a6467f
fixed most lint errors in d2data (#701)
- moved ds1 object definition into the ds1 dir
- added doc files
- only lint errors remaining are for the unused variables in d2video
2020-08-06 16:45:38 -04:00

16 lines
208 B
Go

package d2ds1
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common"
)
// Object is a game world object
type Object struct {
Type int
ID int
X int
Y int
Flags int
Paths []d2common.Path
}