mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
19 lines (15 loc) • 384 B
text/typescript
import JassHandle from './handle';
import JassRect from './rect';
/**
* type weathereffect
*/
export default class JassWeatherEffect extends JassHandle {
whichRect: JassRect;
effectId: string;
enabled: boolean = false;
constructor(whichRect: JassRect, effectId: string) {
super();
this.whichRect = whichRect;
this.effectId = effectId;
}
}