mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
14 lines
390 B
Go
14 lines
390 B
Go
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"`
|
|
}
|