mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
31 lines (28 loc) • 473 B
JavaScript
/**
* A dropped item.
*/
export default class DroppedItem {
/**
*
*/
constructor() {
/** @member {string} */
this.id = '\0\0\0\0';
/** @member {number} */
this.chance = 0;
}
/**
* @param {BinaryStream} stream
*/
load(stream) {
this.id = stream.read(4);
this.chance = stream.readInt32();
}
/**
* @param {BinaryStream} stream
*/
save(stream) {
stream.write(this.id);
stream.writeInt32(this.chance);
}
}