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) • 376 B
TypeScript
import CustomTextTrigger from './customtexttrigger';
/**
* war3map.wct - the custom text (jass) trigger file.
*/
export default class War3MapWct {
version: number;
comment: string;
trigger: CustomTextTrigger;
triggers: CustomTextTrigger[];
load(buffer: ArrayBuffer | Uint8Array): void;
save(): Uint8Array;
getByteLength(): number;
}