cardation
Version:
fundation of card games, card model
15 lines (14 loc) • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Card_1 = require("./Card");
const utils_1 = require("../serialization/utils");
class MarkerCard extends Card_1.default {
/**
* Convert the card to a colored string, which can be printed to the console.
* @returns {string}
*/
getGraph() {
return (0, utils_1.getGraph)(this);
}
}
exports.default = MarkerCard;