UNPKG

cardation

Version:

fundation of card games, card model

17 lines (16 loc) 341 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Suit_1 = require("./Suit"); class Diamond extends Suit_1.default { _id = 'SUIT_DIAMOND'; getId() { return this._id; } getShortName() { return 'd'; } getIcon() { return '♦'; } } exports.default = Diamond;