pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
21 lines • 597 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WinningScatter = void 0;
class WinningScatter {
constructor(symbolId, symbolsPositions, winAmount) {
this.symbolId = symbolId;
this.symbolsPositions = [...symbolsPositions];
this.winAmount = winAmount;
}
getSymbolId() {
return this.symbolId;
}
getSymbolsPositions() {
return [...this.symbolsPositions];
}
getWinAmount() {
return this.winAmount;
}
}
exports.WinningScatter = WinningScatter;
//# sourceMappingURL=WinningScatter.js.map