pokie
Version:
A server-side video slot game logic framework for JavaScript and TypeScript.
29 lines • 845 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SimulationConfig = void 0;
class SimulationConfig {
constructor() {
this.numberOfRounds = SimulationConfig.DEFAULT_NUMBER_OF_ROUNDS;
}
setNumberOfRounds(value) {
this.numberOfRounds = value;
}
getNumberOfRounds() {
return this.numberOfRounds;
}
setPlayStrategy(playStrategy) {
this.playStrategy = playStrategy;
}
getPlayStrategy() {
return this.playStrategy;
}
setChangeBetStrategy(changeBetStrategy) {
this.changeBetStrategy = changeBetStrategy;
}
getChangeBetStrategy() {
return this.changeBetStrategy;
}
}
SimulationConfig.DEFAULT_NUMBER_OF_ROUNDS = 1000;
exports.SimulationConfig = SimulationConfig;
//# sourceMappingURL=SimulationConfig.js.map