UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

10 lines (9 loc) 351 B
import War3Map from '../../parsers/w3x/map'; /** * Given a map, attempt to find all file names referenced in it. * * Can be used with MpqArchive.applyListfile() to actually attempt to resolve the files in the archive. * * Based on code generously shared by Ralle. */ export default function generateListfile(map: War3Map): Set<string>;