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

implement tempentities

This commit is contained in:
Robin Appelman 2016-12-24 15:26:41 +01:00
commit be00d32175
3 changed files with 33 additions and 36 deletions

View file

@ -4,6 +4,7 @@ import {SendTable} from "./SendTable";
import {StringTable} from "./StringTable";
import {SendProp} from "./SendProp";
import {GameEventDefinitionMap} from "./GameEvent";
import {BitStream} from "bit-buffer";
export class Match {
tick: number;
chat: any[];
@ -17,7 +18,7 @@ export class Match {
serverClasses: ServerClass[];
sendTables: SendTable[];
instanceBaselines: SendProp[][][];
staticBaseLines: any[];
staticBaseLines: BitStream[];
eventDefinitions: GameEventDefinitionMap;
constructor() {