1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

add encoder for stringtable message

This commit is contained in:
Robin Appelman 2017-09-26 01:22:55 +02:00
commit 9820e0fc57
6 changed files with 164 additions and 30 deletions

View file

@ -1,10 +1,12 @@
import {BitStream} from 'bit-buffer';
export interface StringTable {
name: string;
entries: StringTableEntry[];
maxEntries: number;
fixedUserDataSize?: number;
fixedUserDataSizeBits?: number;
tableEntry?: StringTableEntry;
}
export interface StringTableEntry {