1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-19 13:45:23 +00:00
OpenDiablo2/d2common/d2fileformats/d2dc6/dc6_frame.go

16 lines
318 B
Go
Raw Normal View History

2020-06-29 02:32:34 +00:00
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
2020-06-29 02:32:34 +00:00
}