UNPKG

card-games-typescript

Version:

Card deck and high or low game library built with TypeScript

15 lines (14 loc) 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PlayerHighLow = void 0; const Player_1 = require("../Player"); const bet_1 = require("./bet"); const hand_1 = require("./hand"); class PlayerHighLow extends Player_1.Player { constructor(name, credit) { super(name, credit); this.cards = new hand_1.HandHol(); this.bet = new bet_1.Bet(); } } exports.PlayerHighLow = PlayerHighLow;