ggejs
Version:
A powerful JavaScript library for interacting with the server of Goodgame Empire: Four Kingdoms
20 lines (17 loc) • 462 B
JavaScript
const WorldMapOwnerInfo = require("./WorldMapOwnerInfo");
class AllianceMember extends WorldMapOwnerInfo {
alliance;
donations;
activityStatus;
/**
* @param {Client} client
* @param {*} data
* @param {Alliance} alliance
*/
constructor(client, data, alliance) {
super(client);
super.fillFromParamObject(data);
this.alliance = alliance;
};
}
module.exports = AllianceMember;