UNPKG

cardation

Version:

fundation of card games, card model

17 lines (16 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Suit_1 = require("./Suit"); class Club extends Suit_1.default { _id = 'SUIT_CLUB'; getId() { return this._id; } getShortName() { return 'c'; } getIcon() { return '♣'; } } exports.default = Club;