@firestone-hs/replay-parser
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.9.
11 lines (10 loc) • 446 B
TypeScript
import { EntityDefinition } from '../parser/entity-definition';
import { HistoryItem } from './history-item';
export declare class GameHistoryItem extends HistoryItem {
readonly entityDefintion: EntityDefinition;
readonly buildNumber: number;
readonly gameType: number;
readonly formatType: number;
readonly scenarioID: number;
constructor(entityDefintion: EntityDefinition, timestamp: number, index: number);
}