1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-14 12:36:41 -05:00
OpenDiablo2/d2common/d2fileformats/d2dc6/dc6_header.go

12 lines
364 B
Go
Raw Normal View History

2020-06-28 22:32:34 -04:00
package d2dc6
// DC6Header represents the file header of a DC6 file.
type DC6Header struct {
2021-06-13 10:04:38 -04:00
Termination []byte `struct:"[4]byte"`
2020-06-28 22:32:34 -04:00
Version int32 `struct:"int32"`
Flags uint32 `struct:"uint32"`
Encoding uint32 `struct:"uint32"`
Directions int32 `struct:"int32"`
FramesPerDirection int32 `struct:"int32"`
}