UNPKG

slotify.js

Version:

A video slot game session framework for JavaScript

32 lines (31 loc) 1.11 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GameSessionSimulationConfig = void 0; var GameSessionSimulationConfig = /** @class */ (function () { function GameSessionSimulationConfig(numberOfRounds, changeBetStrategy) { this._changeBetStrategy = changeBetStrategy; this._numberOfRounds = numberOfRounds; } Object.defineProperty(GameSessionSimulationConfig.prototype, "numberOfRounds", { get: function () { return this._numberOfRounds; }, set: function (value) { this._numberOfRounds = value; }, enumerable: false, configurable: true }); Object.defineProperty(GameSessionSimulationConfig.prototype, "changeBetStrategy", { get: function () { return this._changeBetStrategy; }, set: function (value) { this._changeBetStrategy = value; }, enumerable: false, configurable: true }); return GameSessionSimulationConfig; }()); exports.GameSessionSimulationConfig = GameSessionSimulationConfig;