mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
13 lines
206 B
Go
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
|
||
|
}
|