Stop
This message indicates the end of the demo file. The remaining bytes that come after the type byte might not even include the message tick as seen in older engine versions. These bytes can also appear for alignment reasons.
- Overview
- C
- C++
- C#
- JS
- TS
- Go
- Rust
- Zig
Name | Type | Size in bytes | Size in bits | Value |
---|---|---|---|---|
RemainingData | byte[] | - | - | Optional |
typedef struct {
char* remaining_data;
} stop_t;
struct stop_t {
std::vector<std::byte> remaining_data;
};
class Stop {
public List<byte> RemainingData { get; set; }
}
class Stop {
/** @type {number[]} */
remainingData;
}
export class Stop {
public remainingData?: number[];
}
type Stop struct {
RemainingData []byte
}
pub struct Stop {
pub remaining_data: Vec<u8>,
}
const Stop = struct {
remaining_data: []u8,
};