1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-11 02:58:10 -05:00
OpenDiablo2/d2common/d2fileformats/d2dc6/dc6_frame.go
2021-06-13 16:04:38 +02:00

16 lines
276 B
Go

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