pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
17 lines • 453 B
JavaScript
export 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;
}
}
//# sourceMappingURL=WinningScatter.js.map