mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-11 02:58:10 -05:00
- moved ds1 object definition into the ds1 dir - added doc files - only lint errors remaining are for the unused variables in d2video
16 lines
208 B
Go
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
|
|
}
|