UNPKG

ggejs

Version:

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

15 lines (13 loc) 339 B
const InventoryItem = require("./InventoryItem"); class BattleLogUnit extends InventoryItem { /** * @param {Unit} unit * @param {number} count * @param {number} lost */ constructor(unit, count, lost) { super(unit, count); this.lost = lost; } } module.exports = BattleLogUnit;