mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
12 lines (11 loc) • 331 B
TypeScript
import BinaryStream from '../../common/binarystream';
import IndexEntry from './indexentry';
/**
* A material reference.
*/
export default class MaterialReference {
version: number;
materialType: number;
materialIndex: number;
load(stream: BinaryStream, version: number, _index: IndexEntry[]): void;
}