mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 15:17:04 -05:00
16 lines
318 B
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
|
|
}
|