1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-19 21:55:24 +00:00
OpenDiablo2/d2common/d2fileformats/d2dc6/dc6_frame_header.go

14 lines
390 B
Go
Raw Permalink Normal View History

2020-06-29 02:32:34 +00:00
package d2dc6
// DC6FrameHeader represents the header of a frame in a DC6.
type DC6FrameHeader struct {
Flipped int32 `struct:"int32"`
Width int32 `struct:"int32"`
Height int32 `struct:"int32"`
OffsetX int32 `struct:"int32"`
OffsetY int32 `struct:"int32"`
Unknown uint32 `struct:"uint32"`
NextBlock uint32 `struct:"uint32"`
Length uint32 `struct:"uint32"`
}