1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-05 19:14:14 -04:00
OpenDiablo2/common/Object.go
Tim Sarbin 920a4f51b0
Initial NPC support (#111)
* Started adding support for NPCs. Added Monstats dictionary.
2019-11-07 23:44:03 -05:00

13 lines
206 B
Go

package common
type Object struct {
Type int32
Id int32
X int32
Y int32
Flags int32
Paths []Path
Lookup *ObjectLookupRecord
ObjectInfo *ObjectRecord
}