1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-29 10:35:23 +00:00
OpenDiablo2/d2common/d2enum/object_type.go

12 lines
175 B
Go
Raw Normal View History

package d2enum
// ObjectType is the type of an object
type ObjectType int
// Object types
const (
ObjectTypePlayer ObjectType = iota
ObjectTypeCharacter
ObjectTypeItem
)