mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 09:04:13 +02:00
read string tables from packets
This commit is contained in:
parent
9ebc568392
commit
5b1b11220d
15 changed files with 235 additions and 44 deletions
|
|
@ -1,9 +1,13 @@
|
|||
import {BitStream} from "bit-buffer";
|
||||
export interface StringTable {
|
||||
name: string;
|
||||
entries: StringTableEntry[];
|
||||
entries: StringTableEntry[],
|
||||
maxEntries: number;
|
||||
fixedUserDataSize?: number;
|
||||
fixedUserDataSizeBits?: number;
|
||||
}
|
||||
|
||||
export interface StringTableEntry {
|
||||
text: string;
|
||||
extraData: string[];
|
||||
extraData?: BitStream;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue