UNPKG

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) 471 B
/** * A random item. */ export default class RandomItem { /** * */ 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); } }