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

Fix getting game event type

This commit is contained in:
Robin Appelman 2017-09-30 12:05:50 +02:00
commit 2b0075736b
3 changed files with 12 additions and 3 deletions

View file

@ -20,6 +20,7 @@ export class ParserState {
public staticBaseLines: Map<ServerClassId, BitStream> = new Map();
public staticBaselineCache: Map<ServerClassId, SendProp[]> = new Map();
public eventDefinitions: Map<number, GameEventDefinition<GameEventType>> = new Map();
public eventDefinitionTypes: Map<GameEventType, number> = new Map();
public entityClasses: Map<EntityId, ServerClass> = new Map();
public sendTables: Map<SendTableName, SendTable> = new Map();
public stringTables: StringTable[] = [];