mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 07:07:25 -05:00
16 lines
209 B
Go
16 lines
209 B
Go
package d2data
|
|
|
|
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
|
|
}
|