preferans-score-js
Version:
nodejs score for preferans
29 lines • 634 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class PrefScoreHand {
constructor() {
this._index = 0;
this._repealed = false;
}
get index() {
return this._index;
}
set index(index) {
this._index = index;
}
get repealed() {
return this._repealed;
}
set repealed(repealed) {
this._repealed = repealed;
}
get refa() {
return false;
}
get game() {
return false;
}
}
exports.default = PrefScoreHand;
//# sourceMappingURL=prefScoreHand.js.map