UNPKG

ggejs

Version:

A powerful JavaScript library for interacting with the server of Goodgame Empire: Four Kingdoms

12 lines (11 loc) 228 B
class InventoryItem { /** * @param {any} item * @param {number} count */ constructor(item, count) { this.item = item; this.count = count; } } module.exports = InventoryItem;