mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
bdfdeda67b
* WIP: Add support for missiles Break AnimatedEntity into two parts to support single and composite animations. Summon misssiles on right click. * Break animated entity down further Move npc only logic to npc struct, reduce duplication in map entities * Change a bunch of int32s to int
18 lines
351 B
Go
18 lines
351 B
Go
package d2data
|
|
|
|
import (
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common"
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2data/d2datadict"
|
|
)
|
|
|
|
type Object struct {
|
|
Type int
|
|
Id int
|
|
X int
|
|
Y int
|
|
Flags int
|
|
Paths []d2common.Path
|
|
Lookup *d2datadict.ObjectLookupRecord
|
|
ObjectInfo *d2datadict.ObjectRecord
|
|
}
|