mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-01-12 20:36:25 -05:00
14 lines
325 B
Go
14 lines
325 B
Go
package d2cof
|
|
|
|
import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
|
|
|
// 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
|
|
}
|