22 lines
No EOL
740 B
Text
Executable file
22 lines
No EOL
740 B
Text
Executable file
//------------------------------------------------
|
|
//--- 010 Editor v12.0.1 Binary Template
|
|
//
|
|
// File: dt_wwise_stream.bt
|
|
// Authors: Lucas Schwiderski
|
|
// Version:
|
|
// Purpose:
|
|
// Category: Darktide
|
|
// File Mask: *.wwise_stream
|
|
// ID Bytes:
|
|
// History:
|
|
//------------------------------------------------
|
|
|
|
// Could be the version, but 27 different versions of a file that only contains an offset seems unlikely
|
|
uint32 unknown1;
|
|
Assert(unknown1 == 0x1b);
|
|
|
|
// Offset and length of the section within the `.stream` file.
|
|
// Since all `.wwise_stream` files seem to get their own `.stream` file, `offset` always ends up being `0`,
|
|
// and `length` always ends up matching the `.stream` file's size.
|
|
uint32 offset;
|
|
uint32 length; |