1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-09 10:06:35 -05:00
OpenDiablo2/d2common/d2fileformats/d2cof/cof_layer.go

15 lines
373 B
Go
Raw Normal View History

package d2cof
import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
2020-06-28 22:32:34 -04:00
// CofLayer is a structure that represents a single layer in a COF file.
type CofLayer struct {
2021-01-30 11:09:37 -05:00
Type d2enum.CompositeType
Shadow byte
Selectable bool
Transparent bool
DrawEffect d2enum.DrawEffect
WeaponClass d2enum.WeaponClass
weaponClassByte []byte
}