homm3-parsers
Version:
Collection of binary parsers able to parse various file formats related to Heroes of Might and Magic III
13 lines (12 loc) • 337 B
TypeScript
import { Difficulty } from '../constants';
import { Omit } from '../../../helpers/types';
export interface Info {
hasHero: boolean;
mapSize: number;
hasTwoLevels: boolean;
name: string;
description: string;
difficulty: Difficulty;
masteryCap: number;
}
export declare type InfoRoE = Omit<Info, 'masteryCap'>;