UNPKG

cardation

Version:

fundation of card games, card model

17 lines (16 loc) 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Suit_1 = require("./Suit"); class Heart extends Suit_1.default { _id = 'SUIT_HEART'; getId() { return this._id; } getShortName() { return 'h'; } getIcon() { return '♥'; } } exports.default = Heart;