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) 472 B
/** * An inventory item. */ export default class InventoryItem { /** * */ constructor() { /** @member {number} */ this.slot = 0; /** @member {string} */ this.id = '\0\0\0\0'; } /** * @param {BinaryStream} stream */ load(stream) { this.slot = stream.readInt32(); this.id = stream.read(4); } /** * @param {BinaryStream} stream */ save(stream) { stream.writeInt32(this.slot); stream.write(this.id); } }