mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
12 lines
364 B
Go
12 lines
364 B
Go
package d2dc6
|
|
|
|
// DC6Header represents the file header of a DC6 file.
|
|
type DC6Header struct {
|
|
Version int32 `struct:"int32"`
|
|
Flags uint32 `struct:"uint32"`
|
|
Encoding uint32 `struct:"uint32"`
|
|
Termination []byte `struct:"[4]byte"`
|
|
Directions int32 `struct:"int32"`
|
|
FramesPerDirection int32 `struct:"int32"`
|
|
}
|