UNPKG

mdx-m3-viewer

Version:

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

14 lines (13 loc) 437 B
import BinaryStream from '../../../common/binarystream'; import Modification from './modification'; /** * A modified object. */ export default class ModifiedObject { oldId: string; newId: string; modifications: Modification[]; load(stream: BinaryStream, useOptionalInts: boolean): void; save(stream: BinaryStream, useOptionalInts: boolean): void; getByteLength(useOptionalInts: boolean): number; }