OpenDiablo2/d2common/d2fileformats/d2dc6/dc6_frame.go

16 lines
318 B
Go

package d2dc6
// DC6Frame represents a single frame in a DC6.
type DC6Frame struct {
Flipped uint32
Width uint32
Height uint32
OffsetX int32
OffsetY int32
Unknown uint32
NextBlock uint32
Length uint32
FrameData []byte // size is the value of Length
Terminator []byte // 3 bytes
}