1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-16 04:25:23 +00:00
OpenDiablo2/d2common/d2fileformats/d2cof/cof_layer.go

14 lines
325 B
Go
Raw Normal View History

package d2cof
import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
2020-06-29 02:32:34 +00:00
// CofLayer is a structure that represents a single layer in a COF file.
type CofLayer struct {
Type d2enum.CompositeType
Shadow byte
Selectable bool
Transparent bool
DrawEffect d2enum.DrawEffect
WeaponClass d2enum.WeaponClass
}