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 Spade extends Suit_1.default { _id = 'SUIT_SPADE'; getId() { return this._id; } getShortName() { return 's'; } getIcon() { return '♠'; } } exports.default = Spade;